old_flsystem/PCRobot/Entitys/Display_Real.cs

43 lines
843 B
C#
Raw Normal View History

2022-09-20 03:10:29 +00:00
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; }
}
}
}