13 lines
382 B
C#
13 lines
382 B
C#
namespace Marco.Pms.Model.Entitlements
|
|
{
|
|
public class ActivityCheckList
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid ActivityId { get; set; }
|
|
public string? Description { get; set; } = string.Empty;
|
|
public bool IsChecked { get; set; } = false;
|
|
public bool IsMandatory { get; set; }
|
|
public Guid TenantId { get; set; }
|
|
}
|
|
}
|