This commit is contained in:
David Štaleker
2024-02-25 20:09:43 +01:00
parent 28d1630749
commit 4df426dc10
614 changed files with 121469 additions and 7647 deletions

View File

@@ -0,0 +1,36 @@
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace ZpcBulletinBoard.Models.Editor
{
public class Note
{
[Key]
public int IdNote { get; set; }
[Required]
[ForeignKey("BulletinBoard")]
public int IdBulletinBoard { 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 Title { get; set; }
[Required]
public string Content { get; set; }
// ForeignKey
public BulletinBoard BulletinBoard{ get; set; }
}
}