This commit is contained in:
David Štaleker
2024-03-10 18:58:24 +01:00
parent 52f4900103
commit c4883e4296
39 changed files with 2068 additions and 1227 deletions

View File

@@ -0,0 +1,30 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ZpcBulletinBoard.Models.Editor
{
public class BulletinBoardPageLink
{
[Key]
public int IdLink { get; set; }
[Required]
[ForeignKey("BulletinBoard")]
public int IdBulletinBoardFk { get; set; }
[Required]
[ForeignKey("BulletinBoardPage")]
public int IdBulletinBoardPageFk { get; set; }
[Required]
[Display(Name = "Trajanje")]
public int Duration { get; set; }
[Required]
[Display(Name = "Vrstni red")]
public int Order { get; set; }
// ForeignKey
public BulletinBoard BulletinBoard { get; set; }
public BulletinBoardPage BulletinBoardPage { get; set; }
}
}