10 lines
244 B
C#
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;
|
|
}
|
|
}
|