2025-06-28 15:31:07 +03:30
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Common.Enums
|
|
|
|
|
{
|
|
|
|
|
public enum ConversationStatus
|
|
|
|
|
{
|
2025-07-11 20:37:28 +03:30
|
|
|
|
Recorded, InProgress, Finished
|
2025-06-28 15:31:07 +03:30
|
|
|
|
}
|
|
|
|
|
}
|