mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-22 00:54:26 +08:00
17 lines
389 B
C#
17 lines
389 B
C#
using System;
|
|
|
|
namespace LanMountainDesktop.Models;
|
|
|
|
public static class DailyArtworkMirrorSources
|
|
{
|
|
public const string Domestic = "Domestic";
|
|
public const string Overseas = "Overseas";
|
|
|
|
public static string Normalize(string? value)
|
|
{
|
|
return string.Equals(value, Domestic, StringComparison.OrdinalIgnoreCase)
|
|
? Domestic
|
|
: Overseas;
|
|
}
|
|
}
|