namespace Marco.Pms.Model.ViewModels.Activities { public class CheckListVM { public Guid Id { get; set; } public Guid ActivityId { get; set; } public string? Description { get; set; } public bool IsChecked { get; set; } public bool IsMandatory { get; set; } } }