mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-25 08:22:07 +00:00
15 lines
435 B
C#
15 lines
435 B
C#
using Daybreak.Shared.Attributes;
|
|
using Daybreak.Shared.Configuration.Options;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
|
|
[OptionsName(Name = "Ascalon Trade Chat")]
|
|
[OptionsIgnore]
|
|
[OptionsSynchronizationIgnore]
|
|
public sealed class AscalonTradeChatOptions : ITradeChatOptions
|
|
{
|
|
public string HttpsUri { get; set; } = "https://ascalon.gwtoolbox.com/";
|
|
|
|
public string WssUri { get; set; } = "wss://ascalon.gwtoolbox.com/";
|
|
}
|