mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:24:55 +08:00
14 lines
275 B
C#
14 lines
275 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterLyrics.WinUI3.Services.ResourceService
|
|
{
|
|
public interface IResourceService
|
|
{
|
|
string GetLocalizedString(string id);
|
|
}
|
|
}
|