Table of Contents

Class TenantUserInfo

Namespace
GroupeIsa.Neos.Migration
Assembly
GroupeIsa.Neos.Migration.Abstractions.dll

Represents a user info on a tenant.

public record TenantUserInfo : IEquatable<TenantUserInfo>
Inheritance
TenantUserInfo
Implements
Inherited Members

Constructors

TenantUserInfo(string, string?, string?)

Represents a user info on a tenant.

public TenantUserInfo(string Login, string? FirstName = null, string? LastName = null)

Parameters

Login string

The login of the user.

FirstName string

The first name of the user.

LastName string

The last name of the user.

Properties

FirstName

The first name of the user.

public string? FirstName { get; init; }

Property Value

string

LastName

The last name of the user.

public string? LastName { get; init; }

Property Value

string

Login

The login of the user.

public string Login { get; init; }

Property Value

string