mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 20:27:22 +01:00
12 lines
No EOL
272 B
C#
12 lines
No EOL
272 B
C#
namespace MareSynchronosShared.Utils;
|
|
|
|
public class CdnShardConfiguration
|
|
{
|
|
public string FileMatch { get; set; }
|
|
public Uri CdnFullUrl { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return CdnFullUrl.ToString() + " == " + FileMatch;
|
|
}
|
|
} |