24 lines
656 B
C#
24 lines
656 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Interfaces;
|
|
using Oqtane.Models;
|
|
|
|
namespace SZUAbsolventenverein.Module.BlackBoard.Models
|
|
{
|
|
[Table("SZUAbsolventenvereinBlackBoard")]
|
|
public class BlackBoard : ModelBase, IReportable
|
|
{
|
|
[Key]
|
|
public int BlackBoardId { get; set; }
|
|
public int ModuleId { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
[NotMapped]
|
|
public string ModuleName => "BlackBoard";
|
|
[NotMapped]
|
|
public int ModuleID => ModuleId;
|
|
[NotMapped]
|
|
public int EntityID => BlackBoardId;
|
|
}
|
|
}
|