11 lines
260 B
C#
11 lines
260 B
C#
|
namespace FrontendWebApi.Models
|
|||
|
{
|
|||
|
public class WorkOrderGraph
|
|||
|
{
|
|||
|
public int DoneCnt { get; set; }
|
|||
|
public int NotDoneCnt { get; set; }
|
|||
|
public int DispatchCnt{ get; set; }
|
|||
|
public int NotDispatchCnt { get; set; }
|
|||
|
}
|
|||
|
}
|