Files
ClubPenguinServer/MareSynchronosServer/MareSynchronosShared/Utils/CdnShardConfiguration.cs
2023-01-01 23:36:34 +01:00

15 lines
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;
}
}