kreta/Kreta.BusinessLogic/HelperClasses/AmiTorzslapCOs/MuveszetiAgTantargyCo.cs
2024-03-13 00:33:46 +01:00

23 lines
905 B
C#

namespace Kreta.BusinessLogic.HelperClasses.AmiTorzslapCOs
{
public class MuveszetiAgTantargyCo
{
public int Id { get; set; }
public int TanuloId { get; set; }
public int TanuloCsoportId { get; set; }
public string Nev { get; set; }
public int KotelezosegId { get; set; }
public string Osztalyzat { get; set; }
public string Jeloles { get; set; }
public bool IsFotargy { get; set; }
public bool IsSzoveges { get; set; }
public int Sorszam { get; set; }
public bool IsSzorgalom { get; set; }
public string TanszakNeve { get; set; }
public string ErtekelesSzoveg { get; set; }
public int? OsztalyzatValue { get; set; }
public bool IsAtlagbaNemSzamitBe { get; set; }
public int? KapcsolodoFotargyId { get; set; }
public int? MuveszetiAgId { get; set; }
}
}