6 lines
185 B
C#
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); |