Files
BetterLyrics/RomajiConverter.Core/Models/ReplaceString.cs
2026-01-10 18:07:57 -05:00

23 lines
473 B
C#

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