API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324
  1. namespace UnivateProperties_API.Model.Communication
  2. {
  3. public class MailModel : BaseEntity
  4. {
  5. public string ComType { get; set; }
  6. public string ToAddress { get; set; }
  7. public string FromAddress { get; set; }
  8. public string Name { get; set; }
  9. public string Email { get; set; }
  10. public string Phone { get; set; }
  11. public string Property { get; set; }
  12. public string Message { get; set; }
  13. public string HeardFrom { get; set; }
  14. public string Error { get; set; }
  15. }
  16. }