mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 20:37:23 +01:00
15 lines
No EOL
349 B
C#
15 lines
No EOL
349 B
C#
using System.Text.Json.Serialization;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace MareSynchronosShared.Utils;
|
|
|
|
public class CdnShardConfiguration
|
|
{
|
|
public string FileMatch { get; set; }
|
|
public Uri CdnFullUrl { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return CdnFullUrl.ToString() + " == " + FileMatch;
|
|
}
|
|
} |