Files
TTT/Locale/IMsg.cs
2025-07-30 03:32:31 -07:00

6 lines
98 B
C#

namespace TTT.Locale;
public interface IMsg {
string Key { get; }
object[] Args { get; }
}