Files
downkyicore/DownKyi.Core/Settings/Models/AppSettings.cs
2025-06-15 18:42:34 +08:00

12 lines
474 B
C#

namespace DownKyi.Core.Settings.Models;
public class AppSettings
{
public BasicSettings Basic { get; set; } = new();
public NetworkSettings Network { get; set; } = new();
public VideoSettings Video { get; set; } = new();
public DanmakuSettings Danmaku { get; set; } = new();
public AboutSettings About { get; set; } = new();
public UserInfoSettings UserInfo { get; set; } = new();
public WindowSettings WindowSettings { get; set; } = new();
}