16 lines
454 B
C#
16 lines
454 B
C#
using System;
|
|
|
|
namespace Kreta.BusinessLogic.HelperClasses
|
|
{
|
|
public class KotvallSearchCo
|
|
{
|
|
public int? TanevId { get; set; }
|
|
public string Sorszam { get; set; }
|
|
public Guid? BejelentoIdpEgyediAzonosito { get; set; }
|
|
public int? StatuszId { get; set; }
|
|
public string BeszerzesTargya { get; set; }
|
|
public int? BruttoErtekTol { get; set; }
|
|
public int? BruttoErtekIg { get; set; }
|
|
|
|
}
|
|
}
|