11 lines
286 B
C#
11 lines
286 B
C#
namespace Marco.Pms.Model.Dtos.Activities
|
|
{
|
|
public class ReportCheckListDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Description { get; set; }= string.Empty;
|
|
public bool IsMandatory { get; set; }
|
|
public bool IsChecked { get; set; }
|
|
}
|
|
}
|