Table of Contents

Class AuthenticateWorkerStatusOld

Namespace
Acuit.Pinpoint.Services.Entities
Assembly
Acuit.Pinpoint.Services.Entities.dll

Worker authentication status.

[DataContract(Name = "AuthenticateWorkerStatus", Namespace = "http://schemas.datacontract.org/2004/07/Acuit.Pinpoint.Server.Business")]
public class AuthenticateWorkerStatusOld
Inheritance
AuthenticateWorkerStatusOld
Inherited Members

Constructors

AuthenticateWorkerStatusOld()

public AuthenticateWorkerStatusOld()

Properties

Authenticated

Gets or sets whether the worker was authenticated.

[DataMember]
public bool Authenticated { get; set; }

Property Value

bool

BadgeNumber

Gets or sets the worker's badge number, or null if the worker was not authenticated.

[DataMember(Order = 2)]
public string? BadgeNumber { get; set; }

Property Value

string

FirstName

Gets or sets the worker's first name, or null if the worker was not authenticated.

[DataMember]
public string? FirstName { get; set; }

Property Value

string

LastName

Gets or sets the worker's last name, or null if the worker was not authenticated.

[DataMember]
public string? LastName { get; set; }

Property Value

string

WorkerId

Gets or sets the worker's identifier, or 0 if the worker was not authenticated.

[DataMember]
public int WorkerId { get; set; }

Property Value

int

Methods

ToAuthenticateWorkerStatus()

Creates an instance of AuthenticateWorkerStatus from this instance.

public AuthenticateWorkerStatus ToAuthenticateWorkerStatus()

Returns

AuthenticateWorkerStatus

An equivalent AuthenticateWorkerStatus instance.