using System.ComponentModel.DataAnnotations; namespace AdvertisingProfitControlData { public class Note { public int Id { get; set; } [Required] [StringLength(256)] public string Remark { get; set; } public int FkDateId { get; set; } public virtual WeekEndingDate WeekEndingDate { get; set; } } }