📄 impsservice.cs
字号:
namespace Imps.Client.Core
{
using System;
public class ImpsService
{
private string _desc;
private string _id;
private string _name;
private bool _subscribed;
public ImpsService(string id, string name, string description, bool subscribed)
{
this._id = id;
this._name = name;
this._desc = description;
this._subscribed = subscribed;
}
public string Description
{
get
{
return this._desc;
}
}
public string ID
{
get
{
return this._id;
}
}
public string Name
{
get
{
return this._name;
}
}
public bool Subscribed
{
get
{
return this._subscribed;
}
internal set
{
this._subscribed = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -