14 lines
343 B
C#
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; }
|
|
}
|
|
} |