8 lines
171 B
C#
8 lines
171 B
C#
namespace BotSharp.Abstraction.Conversations.Enums;
|
|
|
|
public class ConversationStatus
|
|
{
|
|
public const string Open = "open";
|
|
public const string Closed = "closed";
|
|
}
|