11 lines
323 B
C#
11 lines
323 B
C#
namespace PyroFetes.DTO.Contact.Request;
|
|
|
|
public class CreateContactDto
|
|
{
|
|
public string? LastName { get; set; }
|
|
public string? FirstName { get; set; }
|
|
public string? PhoneNumber { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? Address { get; set; }
|
|
public string? Role { get; set; }
|
|
} |