2018-03-21 21:07:43 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2018-10-03 01:44:11 +00:00
|
|
|
|
namespace BotSharp.Platform.Models
|
2018-03-21 21:07:43 +00:00
|
|
|
|
{
|
|
|
|
|
|
public enum AIResponseMessageType
|
|
|
|
|
|
{
|
|
|
|
|
|
Text = 0,
|
2018-07-12 15:07:05 +00:00
|
|
|
|
Card = 1,
|
2018-03-21 21:07:43 +00:00
|
|
|
|
Custom = 4
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|