43 lines
843 B
C#
43 lines
843 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PCRobot.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 展示与实际值
|
|
/// </summary>
|
|
internal class Display_Real
|
|
{
|
|
public Display_Real(string Display, string Real)
|
|
{
|
|
this.Display = Display;
|
|
this.Real = Real;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 展示值
|
|
/// </summary>
|
|
private string _Display;
|
|
|
|
public string Display
|
|
{
|
|
get { return _Display; }
|
|
set { _Display = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 实际值
|
|
/// </summary>
|
|
private string _Real;
|
|
|
|
public string Real
|
|
{
|
|
get { return _Real; }
|
|
set { _Real = value; }
|
|
}
|
|
}
|
|
}
|