21.125. Class UserData
Namespace: ArmoniK.Core.Common.Auth.Authentication
Assembly: ArmoniK.Core.Common.dll
User object in database
public record UserData : IEquatable<UserData>
21.125.1. Inheritance
21.125.2. Implements
21.125.3. Inherited Members
object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
21.125.4. Constructors
21.125.4.1. UserData(string, string, string[])
User object in database
public UserData(string UserId, string Username, string[] Roles)
21.125.4.1.1. Parameters
UserId string
User Id
Username string
User name
Roles string[]
User roles
21.125.5. Properties
21.125.5.1. Roles
User roles
public string[] Roles { get; init; }
21.125.5.1.1. Property Value
string[]
21.125.5.2. UserId
User Id
public string UserId { get; init; }
21.125.5.2.1. Property Value
21.125.5.3. Username
User name
public string Username { get; init; }