12 lines
311 B
C#
12 lines
311 B
C#
namespace Prefab.Base;
|
||
|
||
/// <summary>
|
||
/// Read‑only view of the generic attributes bag.
|
||
/// </summary>
|
||
public interface IHasGenericAttributes
|
||
{
|
||
/// <summary>
|
||
/// Gets the read-only dictionary of custom attributes.
|
||
/// </summary>
|
||
IReadOnlyDictionary<string, object> GenericAttributes { get; }
|
||
} |