19 lines
542 B
C#
19 lines
542 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Kreta.BusinessLogic.Interfaces;
|
|
using Kreta.Resources;
|
|
|
|
namespace Kreta.Web.Areas.Orarend.Models
|
|
{
|
|
public class OsztalyCsoportNevGridModel : IKretaIdentity
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
public int OsztalyCsoportId { get; set; }
|
|
|
|
[Display(Name = nameof(OsztalyCsoportResource.OsztalyCsoport), ResourceType = typeof(OsztalyCsoportResource))]
|
|
public string OsztalyCsoportNev { get; set; }
|
|
|
|
public bool Hozzarendelve { get; set; }
|
|
|
|
}
|
|
}
|