Files
RhythmicWallpaper/AudioVisualizer/Entity/UIModification.cs

15 lines
339 B
C#

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; }
}
}