This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,23 @@
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; }
}
}