Files
prefab-page-detail/Prefab.Base/GenericAttributeChange.cs
2025-10-27 17:39:18 -04:00

6 lines
185 B
C#

namespace Prefab.Base;
/// <summary>
/// Represents a change in a custom attribute.
/// </summary>
public record GenericAttributeChange(string Key, object? OldValue, object? NewValue);