XMLTransTool/TransTool/TKey.cs
2024-01-04 17:26:29 +08:00

16 lines
440 B
C#

// ${File.SolutionName} / ${File.ProjectName} / ${File.FileName}
// CREATED AT ${File.CreatedYear} / ${File.CreatedMonth} / ${File.CreatedDay}
namespace TransTool;
public class TKey
{
public string orig { get; set; }
public string target { get; set; }
public string ident { get; set; }
public TKey(string Orig,string Target,string Ident)
{
orig = Orig;
target = Target;
ident = Ident;
}
}