kreta/KretaWeb/Areas/OsztalyCsoport/Models/OsztalyBontasGridModel.cs
2024-03-13 00:33:46 +01:00

13 lines
324 B
C#

using Kreta.BusinessLogic.Interfaces;
using Kreta.Web.Attributes;
namespace Kreta.Web.Areas.OsztalyCsoport.Models
{
public class OsztalyBontasGridModel : IKretaIdentity
{
public string ID { get; set; }
[KretaDisplayName(441)] /*Csoport neve*/
public string CsopNev { get; set; }
}
}