10 lines
262 B
C#
10 lines
262 B
C#
namespace Marco.Pms.Model.Dtos.Tenant
|
|
{
|
|
public class SupportDetailsDto
|
|
{
|
|
public bool EmailSupport { get; set; } = true;
|
|
public bool PhoneSupport { get; set; } = false;
|
|
public bool PrioritySupport { get; set; } = false;
|
|
}
|
|
}
|