Class UserProperty
Represents custom properties that can be associated with a user.
public record UserProperty : IEquatable<UserProperty>
- Inheritance
-
UserProperty
- Implements
- Inherited Members
Constructors
UserProperty(Dictionary<string, object>)
Represents custom properties that can be associated with a user.
public UserProperty(Dictionary<string, object> CustomData)
Parameters
CustomDataDictionary<string, object>A dictionary of custom key-value pairs for storing user-specific data.
Properties
CustomData
A dictionary of custom key-value pairs for storing user-specific data.
public Dictionary<string, object> CustomData { get; init; }