15 lines
343 B
C#
15 lines
343 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace weddingapi.Dtos
|
|
{
|
|
public record CreateContactDto
|
|
{
|
|
[Required]
|
|
public string From { get; init; }
|
|
[Required]
|
|
public string Email { get; init; }
|
|
[Required]
|
|
public string Message { get; init; }
|
|
}
|
|
} |