20 lines
410 B
C#
20 lines
410 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace AUTS.Domain.ViewModels.Home
|
|||
|
|
{
|
|||
|
|
public class VM_TodayData
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public int ProductID { get; set; }
|
|||
|
|
|
|||
|
|
public Dictionary<string, int> StaAndNum = new Dictionary<string, int>();
|
|||
|
|
|
|||
|
|
public string today { get; set; }
|
|||
|
|
public int C1 { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|