36 lines
713 B
C#
36 lines
713 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DG.Core
|
|
{
|
|
internal class ClientKey
|
|
{
|
|
public ClientKey(string id, string name, string accessKey, string vi, string newAccessKey)
|
|
{
|
|
Id = id;
|
|
Name = name;
|
|
AccessKey = accessKey;
|
|
Vi = vi;
|
|
NewAccessKey = newAccessKey;
|
|
}
|
|
|
|
public ClientKey()
|
|
{
|
|
|
|
}
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string AccessKey { get; set; }
|
|
|
|
public string Vi { get; set; }
|
|
|
|
public string NewAccessKey { get; set; }
|
|
}
|
|
}
|