naps2/NAPS2.Lib/Dependencies/DownloadMirror.cs
2023-04-30 14:06:53 -07:00

16 lines
296 B
C#

namespace NAPS2.Dependencies;
public class DownloadMirror
{
private readonly string _urlFormat;
public DownloadMirror(string urlFormat)
{
_urlFormat = urlFormat;
}
public string Url(string subpath)
{
return string.Format(_urlFormat, subpath);
}
}