Files
Essentials/src/PepperDash.Essentials.Core/Web/EssentialsWebApiPropertiesConfig.cs
2023-02-07 15:45:01 -07:00

10 lines
192 B
C#

using Newtonsoft.Json;
namespace PepperDash.Essentials.Core.Web
{
public class EssentialsWebApiPropertiesConfig
{
[JsonProperty("basePath")]
public string BasePath { get; set; }
}
}