using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; namespace UnivateProperties_API.Model.Communication { public class MailModel { public string ToAddress { get; set; } public string FromAddress { get; set; } public string Name { get; set; } public string Email { get; set; } public string Phone { get; set; } public string Property { get; set; } public string Message { get; set; } } }