Files
server/MareSynchronosServer/MareSynchronosShared/Utils/CdnShardConfiguration.cs
2024-01-13 11:16:42 +01:00

13 lines
359 B
C#

namespace MareSynchronosShared.Utils;
public class CdnShardConfiguration
{
public List<string> Continents { get; set; }
public string FileMatch { get; set; }
public Uri CdnFullUrl { get; set; }
public override string ToString()
{
return CdnFullUrl.ToString() + "[" + string.Join(',', Continents) + "] == " + FileMatch;
}
}