15 lines
368 B
C#
15 lines
368 B
C#
|
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>();
|
|||
|
}
|
|||
|
}
|