Skip to content

Commit

Permalink
fixed schema issues
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandrMalafeev committed Jun 12, 2023
1 parent cb4d212 commit aae0ae1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Dojo.Net.EPOS.Server/Schema/CardMachineRequestorInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ namespace Dojo.Net.EPOS.Server.Schema
{
public class CardMachineRequestorInfo
{
string? TerminalId { get; set; }
public string? TerminalId { get; set; }

int? WaiterId { get; set; }
public int? WaiterId { get; set; }
}
}
5 changes: 3 additions & 2 deletions src/Dojo.Net.EPOS.Server/Schema/Payment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,10 @@ public class RemotePaymentInfo
public class PaymentMethodDetails
{
public PaymentMethod Method { get; set; }
public RemotePaymentStatus? RemotePaymentStatus { get; set; }
public CardPresentPaymentStatus? CardPresentPaymentStatus { get; set; }
public RemotePaymentStatus? RemotePaymentStatus { get; set; }
public RemotePaymentInfo? RemotePaymentInfo { get; set; }
public CardPresentPaymentStatus? CardPresentPaymentStatus { get; set; }
public CardPresentPaymentInfo? CardPresentPaymentInfo { get; set; }
}

public enum CardholderVerificationMethod
Expand Down

0 comments on commit aae0ae1

Please sign in to comment.