30 lines
645 B
C#
30 lines
645 B
C#
using Kreta.BusinessLogic.Interfaces;
|
|
|
|
namespace Kreta.Web.Areas.Adminisztracio.Models
|
|
{
|
|
public class CsoportTipusModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Nev { get; set; }
|
|
|
|
public bool IsTanoraiCelu { get; set; }
|
|
|
|
public bool IsProtected { get; set; }
|
|
|
|
public int? OraPerc { get; set; }
|
|
}
|
|
|
|
public class CsoportTipusGridModel : IKretaIdentity
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
public string Nev { get; set; }
|
|
|
|
public bool IsTanoraiCelu { get; set; }
|
|
|
|
public bool IsProtected { get; set; }
|
|
|
|
public int? OraPerc { get; set; }
|
|
}
|
|
}
|