16 lines
541 B
C#
16 lines
541 B
C#
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<CheckListVM>? CheckLists { get; set; }
|
|
}
|
|
}
|