14 lines
302 B
C#
14 lines
302 B
C#
using System;
|
|
|
|
namespace weddingapi
|
|
{
|
|
public record Contact
|
|
{
|
|
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; }
|
|
}
|
|
}
|