init
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using Kreta.Core.CustomAttributes;
|
||||
|
||||
namespace Kreta.DataAccessManual.DataAccessObjects.Feljegyzes
|
||||
{
|
||||
public class FeljegyzesDao
|
||||
{
|
||||
[ColumnName("FeljegyzesId")]
|
||||
public int FeljegyzesId { get; set; }
|
||||
|
||||
[ColumnName("TipusId")]
|
||||
public int TipusId { get; set; }
|
||||
|
||||
[ColumnName("TanuloNev")]
|
||||
public string TanuloNev { get; set; }
|
||||
|
||||
[ColumnName("TanuloId")]
|
||||
public int TanuloId { get; set; }
|
||||
|
||||
[ColumnName("IdpUniqueId")]
|
||||
public Guid IdpUniqueId { get; set; }
|
||||
|
||||
[ColumnName("IntezmenyAzonosito")]
|
||||
public string IntezmenyAzonosito { get; set; }
|
||||
|
||||
[ColumnName("TanevId")]
|
||||
public int TanevId { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user