17.124. Class UserData
Namespace: ArmoniK.Core.Common.Auth.Authentication
Assembly: ArmoniK.Core.Common.dll
User object in database
public record UserData : IEquatable<UserData>
17.124.1. Inheritance
17.124.2. Implements
17.124.3. Inherited Members
object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
17.124.4. Constructors
17.124.4.1. UserData(string, string, string[])
User object in database
public UserData(string UserId, string Username, string[] Roles)
17.124.4.1.1. Parameters
UserId string
User Id
Username string
User name
Roles string[]
User roles
17.124.5. Properties
17.124.5.1. Roles
User roles
public string[] Roles { get; init; }
17.124.5.1.1. Property Value
string[]
17.124.5.2. UserId
User Id
public string UserId { get; init; }
17.124.5.2.1. Property Value
17.124.5.3. Username
User name
public string Username { get; init; }