📄 statipinfo.cs
字号:
namespace PowerEasy.Model.Analytics
{
using PowerEasy.Model;
using System;
public class StatIPInfo : PowerEasy.Model.Nullable
{
private string m_Address;
private double m_EndIP;
private double m_StartIP;
public StatIPInfo()
{
}
public StatIPInfo(bool value)
{
base.IsNull = value;
}
public string Address
{
get
{
return this.m_Address;
}
set
{
this.m_Address = value;
}
}
public double EndIP
{
get
{
return this.m_EndIP;
}
set
{
this.m_EndIP = value;
}
}
public double StartIP
{
get
{
return this.m_StartIP;
}
set
{
this.m_StartIP = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -