mirror of
https://github.com/ditkrg/DIT.Workflower.git
synced 2026-01-25 07:16:39 +00:00
Initial commit
This commit is contained in:
22
tests/DIT.Workflower.Tests/Models.cs
Normal file
22
tests/DIT.Workflower.Tests/Models.cs
Normal 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);
|
||||
Reference in New Issue
Block a user