Files
constructdemo/ConstructorApp.DtoLayer/ContactUsDto/GetContactUsDto.cs
2025-05-01 15:18:30 +03:00

14 lines
430 B
C#

namespace ConstructorApp.DtoLayer.ContactUsDto
{
public class GetContactUsDto
{
public int ContactusID { get; set; }
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; }
}
}