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