init
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Kreta.BusinessLogic.Interfaces;
|
||||
using Kreta.Resources;
|
||||
using Kreta.Web.Attributes;
|
||||
|
||||
namespace Kreta.Web.Areas.Tantargy.Models
|
||||
{
|
||||
public class TantargyFoglalkozasaiGridModel : IKretaIdentity
|
||||
{
|
||||
public string ID { get; set; }
|
||||
|
||||
[Display(Name = nameof(OsztalyCsoportResource.OsztalyCsoport), ResourceType = typeof(OsztalyCsoportResource))]
|
||||
public string OsztalyCsoport { get; set; }
|
||||
|
||||
[KretaDisplayName(2614)] /*Oktató*/
|
||||
public string Tanar { get; set; }
|
||||
|
||||
[KretaDisplayName(254)] /*Heti óraszám*/
|
||||
public float Oraszam { get; set; }
|
||||
|
||||
[KretaDisplayName(255)] /*Foglalkozás típusa*/
|
||||
public string Tipus_DNAME { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user