init
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace Kreta.BusinessLogic.Classes.MobileApi.Naplo.V2.Co.Get.Ora.JavasoltJelenletTemplate
|
||||
{
|
||||
using Kreta.Enums.ManualEnums;
|
||||
|
||||
public class JavasoltJelenletTemplateGetRequestCo
|
||||
{
|
||||
public string Hash { get; set; }
|
||||
public TanoraAllapotaEnum OraAllapot { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
using Kreta.BusinessLogic.Classes.MobileApi.Naplo.V2.Enum;
|
||||
|
||||
namespace Kreta.BusinessLogic.Classes.MobileApi.Naplo.V2.Co.Get.Ora.JavasoltJelenletTemplate
|
||||
{
|
||||
public class JavasoltJelenletTemplateGetResponseCo
|
||||
{
|
||||
public int Prioritas { get; set; }
|
||||
public JavasoltJelenletTemplateType Tipus { get; set; }
|
||||
public List<JavasoltJelenletTemplateItemGetResponseCo> SzuroElemLista { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using Kreta.Enums;
|
||||
|
||||
namespace Kreta.BusinessLogic.Classes.MobileApi.Naplo.V2.Co.Get.Ora.JavasoltJelenletTemplate
|
||||
{
|
||||
public class JavasoltJelenletTemplateItemGetResponseCo : IEquatable<JavasoltJelenletTemplateItemGetResponseCo>
|
||||
{
|
||||
public JavasoltJelenletTemplateItemGetResponseCo(bool isDefault, bool isEnabled, MulasztasTipusEnum mulasztasTipusAdatszotar)
|
||||
{
|
||||
IsDefault = isDefault;
|
||||
IsEnabled = isEnabled;
|
||||
MulasztasTipusAdatszotar = mulasztasTipusAdatszotar;
|
||||
}
|
||||
|
||||
public bool IsDefault { get; set; }
|
||||
public bool IsEnabled { get; set; }
|
||||
public MulasztasTipusEnum MulasztasTipusAdatszotar { get; set; }
|
||||
|
||||
public bool Equals(JavasoltJelenletTemplateItemGetResponseCo other) => MulasztasTipusAdatszotar == other.MulasztasTipusAdatszotar;
|
||||
|
||||
public override int GetHashCode() => MulasztasTipusAdatszotar.GetHashCode();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user