📄 cacheinfo.cs
字号:
namespace PowerEasy.Model.Accessories
{
using System;
public class CacheInfo
{
private string m_CacheName;
private string m_CacheValue;
public string CacheName
{
get
{
return this.m_CacheName;
}
set
{
this.m_CacheName = value;
}
}
public string CacheValue
{
get
{
return this.m_CacheValue;
}
set
{
this.m_CacheValue = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -