添加项目文件。

This commit is contained in:
huiyiruciduojiao
2023-09-26 15:31:52 +08:00
committed by huiyiruciduojiao
parent 34cef0e395
commit d351e442ab
4057 changed files with 140650 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
namespace AudioWallpaper.Entity {
[Serializable]
public class ConfigurationObject {
private GeneralConfigurationObjects? generalConfigurationObjects;
private VideoWallpaperConfigObject? videoWallpaperConfigObject;
public bool DeviceStateChange = false;
public bool SignRenderingStatus = false;
public bool RenderingStatus = true;
public GeneralConfigurationObjects GeneralConfigurationObjects {
get {
if (generalConfigurationObjects != null) {
return generalConfigurationObjects;
}
return new GeneralConfigurationObjects();
}
set {
if (value != null) {
generalConfigurationObjects = value;
} else {
generalConfigurationObjects = new GeneralConfigurationObjects();
}
}
}
public VideoWallpaperConfigObject VideoWallpaperConfigObject {
get {
if (videoWallpaperConfigObject != null) {
return videoWallpaperConfigObject;
}
return new VideoWallpaperConfigObject();
}
set {
if (value != null) {
videoWallpaperConfigObject = value;
} else {
videoWallpaperConfigObject = new VideoWallpaperConfigObject();
}
}
}
}
}