Files
weddingapi/Dtos/ContactDto.cs
2022-05-14 20:19:41 +02:00

14 lines
343 B
C#

using System;
using System.Collections.Generic;
namespace weddingapi.Dtos
{
public record ContactDto
{
public Guid Id { get; init; }
public string From { get; init; }
public string Email { get; init; }
public string Message { get; init; }
public DateTimeOffset CreatedDate { get; set; }
}
}