marco.pms.api/Marco.Pms.Model/Dtos/Directory/CreateContactPhoneDto.cs

10 lines
244 B
C#

namespace Marco.Pms.Model.Dtos.Directory
{
public class CreateContactPhoneDto
{
public string? Label { get; set; }
public string? PhoneNumber { get; set; }
public bool IsPrimary { get; set; } = false;
}
}