13 lines
225 B
C#
13 lines
225 B
C#
|
namespace DeviceRepair.Models.OperationHistory
|
|||
|
{
|
|||
|
public class ComboBoxValueStruct
|
|||
|
{
|
|||
|
public string Value
|
|||
|
{ get; set; }
|
|||
|
public string Display
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|