mirror of
https://github.com/netchx/netch.git
synced 2026-03-16 17:53:17 +08:00
29 lines
552 B
C#
29 lines
552 B
C#
namespace Netch.Models
|
|
{
|
|
public class Profile
|
|
{
|
|
public string ServerRemark;
|
|
public string ModeRemark;
|
|
public string ProfileName;
|
|
|
|
public bool IsDummy = true;
|
|
|
|
public Profile(Server server, Mode mode, string name)
|
|
{
|
|
ServerRemark = server.Remark;
|
|
ModeRemark = mode.Remark;
|
|
ProfileName = name;
|
|
IsDummy = false;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Return a dummy one.
|
|
/// </summary>
|
|
public Profile()
|
|
{
|
|
}
|
|
|
|
|
|
}
|
|
}
|