18 lines
364 B
C#
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; }
|
|
}
|
|
}
|