mirror of
https://github.com/snltty/linker.git
synced 2025-11-03 01:53:32 +08:00
19 lines
587 B
C#
19 lines
587 B
C#
namespace linker.messenger.signin
|
|
{
|
|
public interface ISignInClientStore
|
|
{
|
|
public SignInClientServerInfo Server { get; }
|
|
public SignInClientGroupInfo Group { get; }
|
|
public string Id { get; }
|
|
public string Name { get; }
|
|
|
|
public void SetName(string newName);
|
|
public void SetGroups(SignInClientGroupInfo[] groups);
|
|
public void SetGroupPassword(string password);
|
|
public void SetServer(SignInClientServerInfo servers);
|
|
public void SetSecretKey(string secretKey);
|
|
public void SetId(string id);
|
|
}
|
|
|
|
}
|