mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
10 lines
270 B
C#
10 lines
270 B
C#
namespace DownKyi.Core.Settings.Models;
|
|
|
|
/// <summary>
|
|
/// 关于
|
|
/// </summary>
|
|
public class AboutSettings
|
|
{
|
|
public AllowStatus IsReceiveBetaVersion { get; set; } = AllowStatus.None;
|
|
public AllowStatus AutoUpdateWhenLaunch { get; set; } = AllowStatus.None;
|
|
} |