14 lines
410 B
C#
14 lines
410 B
C#
namespace Marco.Pms.Model.ViewModels.Master
|
|
{
|
|
public class ActivityGroupMasterVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Description { get; set; }
|
|
public Guid ServiceId { get; set; }
|
|
public string? ServicesName { get; set; }
|
|
public bool IsSystem { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|