mare.server/MareSynchronosServer/MareSynchronosShared/Utils/Configuration/CdnShardConfiguration.cs
2024-05-06 14:05:24 +02:00

13 lines
No EOL
373 B
C#

namespace MareSynchronosShared.Utils.Configuration;
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;
}
}