mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
13 lines
308 B
C#
13 lines
308 B
C#
using Daybreak.Shared.Attributes;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
|
|
[OptionsName(Name = "Trader Quotes")]
|
|
[OptionsSynchronizationIgnore]
|
|
[OptionsIgnore]
|
|
internal sealed class TraderQuotesOptions
|
|
{
|
|
[OptionIgnore]
|
|
public string HttpsUri { get; set; } = "https://kamadan.gwtoolbox.com/";
|
|
}
|