11 lines
203 B
C#
11 lines
203 B
C#
namespace EnotaryoPH.Data.Constants
|
|
{
|
|
public enum VideoConferenceStatus
|
|
{
|
|
New = 0,
|
|
InProgress = 1,
|
|
Expired = 49,
|
|
Abandoned = 50,
|
|
Completed = 100
|
|
}
|
|
} |