15 lines
331 B
C#
15 lines
331 B
C#
namespace Customers.Api.Contracts.Data;
|
|
|
|
public class CustomerDto
|
|
{
|
|
public string Id { get; init; } = default!;
|
|
|
|
public string Username { get; init; } = default!;
|
|
|
|
public string FullName { get; init; } = default!;
|
|
|
|
public string Email { get; init; } = default!;
|
|
|
|
public DateTime DateOfBirth { get; init; }
|
|
}
|