mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
11 lines
410 B
C#
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();
|
|
} |