init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
31
Kreta.Client/KGR/Model/BaseHibaModel.cs
Normal file
31
Kreta.Client/KGR/Model/BaseHibaModel.cs
Normal file
|
@ -0,0 +1,31 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Kreta.Client.KGR.Model
|
||||
{
|
||||
public class BaseHibaModel
|
||||
{
|
||||
public string Exception { get; set; }
|
||||
public BaseHibaValidationResult ValidationResult { get; set; }
|
||||
public string CorrelationId { get; set; }
|
||||
public string Type { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string Status { get; set; }
|
||||
public string Detail { get; set; }
|
||||
public string Instance { get; set; }
|
||||
public Dictionary<string, List<string>> Errors { get; set; }
|
||||
}
|
||||
|
||||
public class BaseHibaValidationResult
|
||||
{
|
||||
public List<BaseHibaValidationResultDetail> Tiltasok { get; set; }
|
||||
public List<BaseHibaValidationResultDetail> Figyelmeztetesek { get; set; }
|
||||
public List<BaseHibaValidationResultDetail> Engedelyezettek { get; set; }
|
||||
}
|
||||
|
||||
public class BaseHibaValidationResultDetail
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string Nev { get; set; }
|
||||
public string Uzenet { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue