Class AuthenticateWorkerStatusOld
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
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
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
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
WorkerId
Gets or sets the worker's identifier, or 0 if the worker was not authenticated.
[DataMember]
public int WorkerId { get; set; }
Property Value
Methods
ToAuthenticateWorkerStatus()
Creates an instance of AuthenticateWorkerStatus from this instance.
public AuthenticateWorkerStatus ToAuthenticateWorkerStatus()
Returns
- AuthenticateWorkerStatus
An equivalent AuthenticateWorkerStatus instance.