namespace ConstructorApp.DtoLayer.ContactUsDto { public class CreateContactUsDto { public DateTime Date { get; set; } = DateTime.Now; public string? NameSurname { get; set; } public string? Mail { get; set; } public string? Phone { get; set; } public string? MessageContent { get; set; } public bool Status { get; set; } } }