9 lines
191 B
C#
9 lines
191 B
C#
namespace Marco.Pms.Model.Dtos.Directory
|
|
{
|
|
public class CreateContactPhoneDto
|
|
{
|
|
public string? Label { get; set; }
|
|
public string? PhoneNumber { get; set; }
|
|
}
|
|
}
|