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
Status
Gets or sets the current status of the workplace.
WorkplaceStatus Status { get; set; }
Property Value
User
Gets or sets the user information associated with the workplace.
IUserInfo? User { get; set; }