mirror of
https://github.com/snltty/linker.git
synced 2025-12-18 17:36:45 +08:00
16 lines
385 B
C#
16 lines
385 B
C#
namespace linker.messenger.updater
|
|
{
|
|
public interface IUpdaterCommonStore
|
|
{
|
|
|
|
public string UpdateUrl { get; }
|
|
public int UpdateIntervalSeconds { get; }
|
|
public bool CheckUpdate { get; }
|
|
|
|
public void SetUrl(string url);
|
|
public void SetInterval(int sec);
|
|
public void SetCheck(bool checke);
|
|
public void Confirm();
|
|
}
|
|
}
|