init
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using Kreta.Core.CustomAttributes;
|
||||
|
||||
namespace Kreta.Naplo.Dao.V3.Igazolas
|
||||
{
|
||||
public class IgazolasResponseDao
|
||||
{
|
||||
[ColumnName("ID")]
|
||||
public int Id { get; set; }
|
||||
|
||||
[ColumnName("Kezdete")]
|
||||
public DateTime Kezdete { get; set; }
|
||||
|
||||
[ColumnName("Vege")]
|
||||
public DateTime Vege { get; set; }
|
||||
|
||||
[ColumnName("IgazolasTipusa")]
|
||||
public int Tipusa { get; set; }
|
||||
|
||||
[ColumnName("Megjegyzes")]
|
||||
public string Megjegyzes { get; set; }
|
||||
|
||||
[ColumnName("Rogzito")]
|
||||
public string Rogzito { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user