feat: romaji plugin (without dict)

This commit is contained in:
Zhe Fang
2026-01-10 18:07:57 -05:00
parent fea7367671
commit d042993eb7
53 changed files with 2391 additions and 299 deletions

View 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;
}
}
}