mirror of
https://github.com/snltty/linker.git
synced 2025-12-18 17:36:45 +08:00
17 lines
398 B
C#
17 lines
398 B
C#
namespace linker.messenger.updater
|
|
{
|
|
public interface IUpdaterServerStore
|
|
{
|
|
/// <summary>
|
|
/// 更新密钥
|
|
/// </summary>
|
|
public string SecretKey { get; }
|
|
/// <summary>
|
|
/// 设置更新密钥
|
|
/// </summary>
|
|
/// <param name="key"></param>
|
|
public void SetSecretKey(string key);
|
|
public bool Confirm();
|
|
}
|
|
}
|