Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor changes to GovGr models #440

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<VersionPrefixMultitenancy>$(VersionPrefixBase).0</VersionPrefixMultitenancy>
<VersionPrefixRisk>$(VersionPrefixBase).0</VersionPrefixRisk>
<VersionPrefixMedia>$(VersionPrefixBase).0</VersionPrefixMedia>
<VersionPrefixGovGr>$(VersionPrefixBase).0</VersionPrefixGovGr>
<VersionPrefixGovGr>$(VersionPrefixBase).1-beta02</VersionPrefixGovGr>
<VersionPrefix>$(VersionPrefixBase).0</VersionPrefix>
<!--<VersionSuffix>beta-01</VersionSuffix>-->
<Authors>Constantinos Leftheris, Georgios Manoltzas</Authors>
Expand Down
4 changes: 2 additions & 2 deletions src/Indice.Features.GovGr/Models/KycModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ public class UnemploymentInfoData {
public class PensionerInfoData {
/// <summary>Ενεργή ιδιότητα συνταξιούχου</summary>
[JsonPropertyName("isPensioner")]
public bool IsPensioner { get; set; }
public string IsPensioner { get; set; }
}

/// <summary>Academic Info Data</summary>
Expand All @@ -506,7 +506,7 @@ public class AcademicInfoData {
public class IekStudentInfo {
/// <summary>Στοιχεία φοίτησης σε ΙΕΚ</summary>
[JsonPropertyName("isActive")]
public bool IsActive { get; set; }
public string IsActive { get; set; }
}

/// <summary>Professional Activity Data</summary>
Expand Down
Loading