35 lines
797 B
C#
35 lines
797 B
C#
using System;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class DolgozatBaseGridRowCo
|
|
{
|
|
public int RowId { get; set; }
|
|
|
|
public DateTime Datum { get; set; }
|
|
|
|
public string OsztalyCsoport { get; set; }
|
|
|
|
public string TantargyNev { get; set; }
|
|
|
|
public string ErtekelesTemaja { protected get; set; }
|
|
|
|
public double? Atlag { get; set; }
|
|
|
|
public int? DolgozatotIrt { get; set; }
|
|
|
|
public int? OsztalyCsoportLetszam { get; set; }
|
|
|
|
public int? Erdemjegy5 { get; set; }
|
|
|
|
public int? Erdemjegy4 { get; set; }
|
|
|
|
public int? Erdemjegy3 { get; set; }
|
|
|
|
public int? Erdemjegy2 { get; set; }
|
|
|
|
public int? Erdemjegy1 { get; set; }
|
|
|
|
public int? DolgozatotNemIrt { get; set; }
|
|
}
|
|
}
|