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

11 lines
410 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();
}