From 7d11ff3f9d93654ac7e0d9500dadb704ce6995f4 Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 12 Sep 2023 14:28:48 +0100 Subject: [PATCH] Fix incorrect data type --- AssortGenerator.Models/Output/Suits.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AssortGenerator.Models/Output/Suits.cs b/AssortGenerator.Models/Output/Suits.cs index bc32dd3..4190ec7 100644 --- a/AssortGenerator.Models/Output/Suits.cs +++ b/AssortGenerator.Models/Output/Suits.cs @@ -17,7 +17,7 @@ namespace AssortGenerator.Models.Input { public int loyaltyLevel { get; set; } public int profileLevel { get; set; } - public int standing { get; set; } + public decimal standing { get; set; } public List skillRequirements { get; set; } public List questRequirements { get; set; } public List itemRequirements { get; set; }