16 lines
440 B
C#
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;
|
|
}
|
|
} |