Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
12345678910111213141516171819202122232425 |
- 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; }
- }
- }
|