HKC_Blazor/MasaBlazorApp3/DataAccess/ChannelStockWithDrawerCount.cs

15 lines
368 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
{
public class ChannelStockWithDrawerCount<ChannelStock>
{
public int[] DrawerArray { get; set; }
public List<ChannelStock> ChannelStocks { get; set; } = new List<ChannelStock>();
}
}