API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CampaignPlaceHolder.cs 536B

1234567891011121314151617
  1. using System.ComponentModel.DataAnnotations.Schema;
  2. namespace UnivateProperties_API.Model.Campaigns
  3. {
  4. public class CampaignPlaceHolder : 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. public string Format { get; set; }
  11. [ForeignKey("Campaign")]
  12. public int CampaignId { get; set; }
  13. public virtual Campaign Campaign { get; set; }
  14. }
  15. }