From 24424bc8fedcfcfd467f15f674ae7f2c8ac6748b Mon Sep 17 00:00:00 2001 From: ilitirit Date: Wed, 7 Aug 2024 17:31:42 +0200 Subject: [PATCH] Add PlaceName to DutyInfo --- Expedience.Models/DutyInfo.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Expedience.Models/DutyInfo.cs b/Expedience.Models/DutyInfo.cs index 292839b..d578e7b 100644 --- a/Expedience.Models/DutyInfo.cs +++ b/Expedience.Models/DutyInfo.cs @@ -14,5 +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; } } }