Files
downkyicore/DownKyi.Core/Settings/Models/AboutSettings.cs
2023-11-25 21:59:48 +08:00

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;
}