Table of Contents

Interface IWorkplace

Namespace
XENBIT.ResQueServe.Abstractions.Interfaces
Assembly
RQS.Abstractions.dll

Represents a workplace, including its status, associated user, and identifying number.

public interface IWorkplace

Properties

Number

Gets or sets the number that identifies the workplace.

int Number { get; init; }

Property Value

int

Status

Gets or sets the current status of the workplace.

WorkplaceStatus Status { get; set; }

Property Value

WorkplaceStatus

User

Gets or sets the user information associated with the workplace.

IUserInfo? User { get; set; }

Property Value

IUserInfo