diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-01-30 01:41:08 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-01-30 01:41:08 +0100 |
| commit | 36afcdf0988e753ae2178fb8220b02f2c4d0b2b2 (patch) | |
| tree | d27cb629cd53eeef6737ddc86915d51a9ac4b9c3 /src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs | |
| parent | bbe0fb036a790b6a23a478d3f047add63b3b07a6 (diff) | |
| download | dotnet-vipps-ecommerce-36afcdf0988e753ae2178fb8220b02f2c4d0b2b2.tar.xz dotnet-vipps-ecommerce-36afcdf0988e753ae2178fb8220b02f2c4d0b2b2.zip | |
refactor: Convert solution for file-scoped namespaces
Diffstat (limited to 'src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs')
| -rw-r--r-- | src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs b/src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs index bf579a4..7a38412 100644 --- a/src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs +++ b/src/IOL.VippsEcommerce/Models/Api/EStatusEnum.cs @@ -1,25 +1,24 @@ using System.Text.Json.Serialization; -namespace IOL.VippsEcommerce.Models.Api +namespace IOL.VippsEcommerce.Models.Api; + +public enum EStatusEnum { - public enum EStatusEnum - { - /// <summary> - /// Enum Cancelled for value: Cancelled - /// </summary> - [JsonPropertyName("Cancelled")] - CANCELLED = 1, + /// <summary> + /// Enum Cancelled for value: Cancelled + /// </summary> + [JsonPropertyName("Cancelled")] + CANCELLED = 1, - /// <summary> - /// Enum Captured for value: Captured - /// </summary> - [JsonPropertyName("Captured")] - CAPTURED = 2, + /// <summary> + /// Enum Captured for value: Captured + /// </summary> + [JsonPropertyName("Captured")] + CAPTURED = 2, - /// <summary> - /// Enum Refund for value: Refund - /// </summary> - [JsonPropertyName("Refund")] - REFUND = 3 - } + /// <summary> + /// Enum Refund for value: Refund + /// </summary> + [JsonPropertyName("Refund")] + REFUND = 3 }
\ No newline at end of file |
