mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 10:54:55 +08:00
feat: romaji plugin (without dict)
This commit is contained in:
23
RomajiConverter.Core/Models/ReplaceString.cs
Normal file
23
RomajiConverter.Core/Models/ReplaceString.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace RomajiConverter.Core.Models
|
||||
{
|
||||
public class ReplaceString
|
||||
{
|
||||
public ReplaceString(ushort id, string value, bool isSystem)
|
||||
{
|
||||
Id = id;
|
||||
Value = value;
|
||||
IsSystem = isSystem;
|
||||
}
|
||||
|
||||
public ushort Id { get; set; }
|
||||
|
||||
public string Value { get; set; }
|
||||
|
||||
public bool IsSystem { get; set; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return Value;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user