Initial commit

This commit is contained in:
2022-05-21 04:08:43 +03:00
parent 31462b2ba2
commit 83059ce638
22 changed files with 1104 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
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);