17 lines
430 B
C#
17 lines
430 B
C#
using System.Collections.Generic;
|
|
|
|
namespace LightlessSyncServer.Configuration;
|
|
|
|
public sealed class ChatZoneOverridesOptions
|
|
{
|
|
public List<ChatZoneOverride>? Zones { get; set; }
|
|
}
|
|
|
|
public sealed class ChatZoneOverride
|
|
{
|
|
public string Key { get; set; } = string.Empty;
|
|
public string? DisplayName { get; set; }
|
|
public List<string>? TerritoryNames { get; set; }
|
|
public List<ushort>? TerritoryIds { get; set; }
|
|
}
|