屠宰场客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
587 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BWP.WinFormControl
{
public sealed class WordPair
{
public string DisplayName { get; private set; }
public string PhyName { get; private set; }
public WordPair()
{ }
public WordPair(string display)
{
DisplayName = display;
}
public WordPair(string display, string phy)
{
DisplayName = display;
PhyName = phy;
}
public override string ToString()
{
return DisplayName;
}
}
}