using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AudioWallpaper.Entity { public class UIModification { public string? ControlName { get; set; } public string? PropertyName { get; set; } public object? Value { get; set; } } }