mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:24:55 +08:00
23 lines
473 B
C#
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;
|
|
}
|
|
}
|
|
} |