40 lines
857 B
C#
40 lines
857 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ZpcBulletinBoard.Models.Editor
|
|
{
|
|
public class Note
|
|
{
|
|
[Key]
|
|
public int IdNote { get; set; }
|
|
|
|
[Required]
|
|
[ForeignKey("BulletinBoardPage")]
|
|
public int IdBulletinBoardPage { get; set; }
|
|
|
|
[Required]
|
|
public int X { get; set; }
|
|
|
|
[Required]
|
|
public int Y { get; set; }
|
|
|
|
[Required]
|
|
public int Width { get; set; }
|
|
|
|
[Required]
|
|
public int Height { get; set; }
|
|
|
|
[Required]
|
|
public string Content { get; set; }
|
|
|
|
[Required]
|
|
public int Zindex { get; set; }
|
|
|
|
[Required]
|
|
public string ColorClass { get; set; }
|
|
|
|
// ForeignKey
|
|
public BulletinBoardPage BulletinBoardPage { get; set; }
|
|
}
|
|
}
|