Files
zpc-bulletin-board/ZpcBulletinBoard/Models/Editor/Note.cs
2024-02-28 20:04:20 +01:00

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