This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,37 @@
using System;
using System.ComponentModel.DataAnnotations;
using Kreta.BusinessLogic.Interfaces;
using Kreta.Resources;
namespace Kreta.Web.Areas.Feljegyzes.Models
{
public class BaseFeljegyzesNaploNezetReszletekGridModel : IKretaIdentity
{
public string ID { get; set; }
public int TanuloId { get; set; }
[Display(Name = nameof(FeljegyzesekResource.Datum), ResourceType = typeof(FeljegyzesekResource))]
public DateTime EsemenyDatuma { get; set; }
public int Tipus { get; set; }
[Display(Name = nameof(FeljegyzesekResource.Tipus), ResourceType = typeof(FeljegyzesekResource))]
public string Tipus_DNAME { get; set; }
[Display(Name = nameof(FeljegyzesekResource.Targy), ResourceType = typeof(FeljegyzesekResource))]
public string Targy { get; set; }
[Display(Name = nameof(FeljegyzesekResource.Tartalom), ResourceType = typeof(FeljegyzesekResource))]
public string Tartalom { get; set; }
[Display(Name = nameof(FeljegyzesekResource.Tanar), ResourceType = typeof(FeljegyzesekResource))]
public string FeljegyzoNeve { get; set; }
public string Torolt { get; set; }
public bool Torolt_BOOL { get; set; }
}
}