📄 paramforbiz.cs
字号:
namespace Imps.Client.Core
{
using Imps.Common;
using System;
public class ParamForBiz
{
private bool? _bool1;
private bool? _bool2;
private Imps.Common.IicUri _iicUri;
private int? _int1;
private Imps.Client.Core.User _user;
public bool? Bool1
{
get
{
return this._bool1;
}
set
{
this._bool1 = value;
}
}
public bool? Bool2
{
get
{
return this._bool2;
}
set
{
this._bool2 = value;
}
}
public Imps.Common.IicUri IicUri
{
get
{
return this._iicUri;
}
set
{
this._iicUri = value;
}
}
public int? Int1
{
get
{
return this._int1;
}
set
{
this._int1 = value;
}
}
public Imps.Client.Core.User User
{
get
{
return this._user;
}
set
{
this._user = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -