Files
advertising-profit-control/AdvertisingProfitControlData/Note.cs
T

18 lines
364 B
C#

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