mirror of
https://github.com/ditkrg/DIT.Workflower.git
synced 2026-01-22 13:56:43 +00:00
23 lines
284 B
C#
23 lines
284 B
C#
namespace DIT.Workflower.Tests;
|
|
|
|
public enum PhoneState
|
|
{
|
|
Idle,
|
|
Ringing,
|
|
Connected,
|
|
Declined,
|
|
OnHold,
|
|
}
|
|
|
|
public enum PhoneCommand
|
|
{
|
|
IncomingCall,
|
|
Accept,
|
|
Decline,
|
|
Hold,
|
|
Resume,
|
|
Disconnect,
|
|
}
|
|
|
|
public record PhoneCall(bool Active = true);
|