HKC_Blazor/MasaBlazorApp3/DataAccess/ChannelStockWithDrawerCount.cs

15 lines
335 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.DataAccess
{
2025-06-24 08:55:34 +08:00
public class ChannelStockWithDrawerCount<T>
2025-04-18 11:01:56 +08:00
{
public int[] DrawerArray { get; set; }
2025-06-24 08:55:34 +08:00
public List<T> ChannelStocks { get; set; } = new List<T>();
2025-04-18 11:01:56 +08:00
}
}