123456789101112131415161718192021222324 |
- namespace UnivateProperties_API.Model.Communication
- {
- public class MailModel : BaseEntity
- {
- public string ComType { get; set; }
- 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; }
-
- public string HeardFrom { get; set; }
-
- public string Error { get; set; }
- }
- }
|