Files
server/MareSynchronosServer/MareSynchronosShared/Utils/CdnShardConfiguration.cs
2024-01-12 13:10:14 +01:00

13 lines
389 B
C#

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