15 lines
466 B
C#
15 lines
466 B
C#
using Kreta.Core.CustomAttributes;
|
|
namespace Kreta.Ellenorzo.Dao.VN.Ertekeles.Atlag
|
|
{
|
|
public class TantargyiAtlagResponseDao
|
|
{
|
|
[ColumnName("TanuloId")]
|
|
public int TanuloId { get; set; }
|
|
[ColumnName("TantargyId")]
|
|
public int TantargyId { get; set; }
|
|
[ColumnName("Atlag")]
|
|
public decimal? Atlag { get; set; }
|
|
[ColumnName("SulyozottAtlag")]
|
|
public decimal? SulyozottAtlag { get; set; }
|
|
}
|
|
}
|