namespace Marco.Pms.Model.ViewModels.Activities { public class ActivityVM { public Guid Id { get; set; } public string? ActivityName { get; set; } public string? UnitOfMeasurement { get; set; } public Guid? ActitvityGroupId { get; set; } public string? ActivityGroupName { get; set; } public Guid? ServiceId { get; set; } public string? ServicesName { get; set; } public bool IsActive { get; set; } public List? CheckLists { get; set; } } }