13 lines
296 B
C#
13 lines
296 B
C#
namespace Customers.Api.Contracts.Requests;
|
|
|
|
public class CreateCustomerRequest
|
|
{
|
|
public string Username { get; init; } = default!;
|
|
|
|
public string FullName { get; init; } = default!;
|
|
|
|
public string Email { get; init; } = default!;
|
|
|
|
public DateTime DateOfBirth { get; init; }
|
|
}
|