application.cs
来自「轻量级单点登录系统源码 很齐全供大家下载分享」· CS 代码 · 共 55 行
CS
55 行
using System;
using System.Collections.Generic;
using System.Text;
namespace SSOLab.SSOServer.Components
{
public class Application
{
private string _id;
private string _name;
private string _ssoKey;
public string ID
{
get
{
return this._id;
}
set
{
this._id = value;
}
}
public string Name
{
get
{
return this._name;
}
set
{
this._name = value;
}
}
public string SSOKey
{
get
{
return this._ssoKey;
}
set
{
this._ssoKey = value;
}
}
public Application()
{
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?