From 2a76b9138c00bdd7dd3f001e399289d71fdb3a04 Mon Sep 17 00:00:00 2001 From: Stuart Ferguson Date: Fri, 14 Jan 2022 16:20:55 +0000 Subject: [PATCH] Update to enum to swap values --- TransactionProcessor.Models/CalculationType.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/TransactionProcessor.Models/CalculationType.cs b/TransactionProcessor.Models/CalculationType.cs index 336ec006..0c5ddc2c 100644 --- a/TransactionProcessor.Models/CalculationType.cs +++ b/TransactionProcessor.Models/CalculationType.cs @@ -6,13 +6,13 @@ public enum CalculationType { /// - /// The percentage + /// The fixed /// - Percentage, + Fixed, /// - /// The fixed + /// The percentage /// - Fixed + Percentage } } \ No newline at end of file