You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
downkyi/DownKyi.Core/Settings/Models/AppSettings.cs

13 lines
514 B

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