Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanpierrefortune committed Sep 20, 2024
1 parent 966e6d2 commit 6c7c3ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ public class TransmitCardRequestCmdBody
/// Core API level.
/// </summary>
[JsonProperty("coreApiLevel")]
public int CoreApiLevel = ApiInfo.CORE_API_LEVEL;
public required int CoreApiLevel { get; set; }

/// <summary>
/// Service name.
/// </summary>
[JsonProperty("service")]
public const string Service = "TRANSMIT_CARD_SELECTION_REQUESTS";
public required string Service { get; set; }

/// <summary>
/// Parameters for transmitting a card request.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class EndRemoteServiceBody
/// Core API level.
/// </summary>
[JsonProperty("coreApiLevel")]
public const int CoreApiLevel = ApiInfo.CORE_API_LEVEL;
public required int CoreApiLevel { get; set; }

/// <summary>
/// Gets or sets the OutputData.
Expand Down

0 comments on commit 6c7c3ea

Please sign in to comment.