HKC_Blazor/MasaBlazorApp3/Pojo/Config/DrawerConfig.cs

19 lines
415 B
C#
Raw Normal View History

2025-04-18 11:01:56 +08:00
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; }
2025-09-04 15:19:32 +08:00
public int[] returnDrawer { get; set; }
2025-04-18 11:01:56 +08:00
}
}