API
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

MailModel.cs 555B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace UnivateProperties_API.Model.Communication
  7. {
  8. public class MailModel
  9. {
  10. public string ToAddress { get; set; }
  11. public string FromAddress { get; set; }
  12. public string Name { get; set; }
  13. public string Email { get; set; }
  14. public string Phone { get; set; }
  15. public string Property { get; set; }
  16. public string Message { get; set; }
  17. }
  18. }