From 8544ff3bb76f7c1c4af765383bc26e064de4d566 Mon Sep 17 00:00:00 2001 From: ilitirit Date: Wed, 7 Aug 2024 18:52:41 +0200 Subject: [PATCH] Fix PlaceName setter --- Expedience.Models/DutyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Expedience.Models/DutyInfo.cs b/Expedience.Models/DutyInfo.cs index d578e7b..baaba53 100644 --- a/Expedience.Models/DutyInfo.cs +++ b/Expedience.Models/DutyInfo.cs @@ -14,6 +14,6 @@ namespace Expedience.Models public bool HasEcho { get; set; } public bool IsNpcSupported { get; set; } public bool IsMinILevel { get; set; } - public string PlaceName { get; internal set; } + public string PlaceName { get; set; } } }