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ů.
12345678910111213141516 |
- using System.Collections.Generic;
-
- namespace UnivateProperties_API.Model.Communication
- {
- public class Template : BaseEntity
- {
- #region Properties
-
- public string Name { get; set; }
- public string Subject { get; set; }
- public string Body { get; set; }
-
- public virtual ICollection<PlaceHolder> PlaceHolders { get; set; }
- #endregion
- }
- }
|