23 lines
611 B
C#
23 lines
611 B
C#
using Kreta.Core;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class TanuloErtekelesTantargyListBaseGridRowCo : TanuloErtekelesBaseGridRowCo
|
|
{
|
|
public string TantargyNev { get; set; }
|
|
|
|
public int? TantargyKategoriaId { get; set; }
|
|
|
|
public int? TantargyKategoriaOrder { get; set; }
|
|
|
|
public int? FotargyId { get; set; }
|
|
|
|
public bool IsFotargy => !FotargyId.IsEntityId();
|
|
|
|
public string FotargyNev { get; set; }
|
|
|
|
public int? FotargyTantargyKategoriaId { get; set; }
|
|
|
|
public int? FotargyTantargyKategoriaOrder { get; set; }
|
|
}
|
|
}
|