Untitled
unknown
plain_text
2 years ago
984 B
9
Indexable
public class DTODuty
{
public int id { get; set; }
public int dutyCategoryId { get; set; }
public string dutyCategory { get; set; }
public string dutyCategoryPhotoUrl { get; set; }
public string duty { get; set; }
public string dutyFirstHundredChar { get; set; }
public string dutyDateForUpdate { get; set; }
public string dutyDateTimeForUpdate { get; set; }
public string dutyDateStr { get; set; }
public bool isDone { get; set; }
public bool isOwner { get; set; }
}
public class DTODutyForDate
{
public string done { get; set; }
public List<DTODuty> doneDuties { get; set; }
public string notDone { get; set; }
public List<DTODuty> notDoneDuties { get; set; }
public DTODutyForDate()
{
doneDuties = new List<DTODuty>();
notDoneDuties = new List<DTODuty>();
}
}Editor is loading...
Leave a Comment