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
    }
}