18 lines
372 B
C#
18 lines
372 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MasaBlazorApp3.Pojo.Config
|
|
{
|
|
public class DrawerConfig
|
|
{
|
|
public int[] single { get; set; }
|
|
public int[] weigh { get; set; }
|
|
public int[] box { get; set; }
|
|
public int[] label { get; set; }
|
|
|
|
}
|
|
}
|