22 lines
518 B
C#
22 lines
518 B
C#
namespace AdvertsingProfitControl
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
public partial 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; }
|
|
}
|
|
}
|