DeviceManager/DeviceRepair.Models/Plan/View/DailyPlanDetail.cs

14 lines
246 B
C#
Raw Permalink Normal View History

2024-07-17 02:32:45 +00:00
using System;
namespace DeviceRepair.Models.Plan.View
{
public class DailyPlanDetail
{
public DateTime MaintenanceDate { get; set; }
public int Banci { get; set; }
public int IsComplate { get; set; }
}
}