API
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

PlaceHolder.cs 489B

12345678910111213141516
  1. using System.ComponentModel.DataAnnotations.Schema;
  2. namespace UnivateProperties_API.Model.Communication
  3. {
  4. public class PlaceHolder : BaseEntity
  5. {
  6. public string Name { get; set; }
  7. public string BoundToClass { get; set; }
  8. public string BoundToClassDisplay { get; set; }
  9. public string BoundTo { get; set; }
  10. [ForeignKey("Template")]
  11. public int TemplateId { get; set; }
  12. public virtual Template Template { get; set; }
  13. }
  14. }