14 lines
215 B
C#
14 lines
215 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BotSharp.Platform.Models
|
|
{
|
|
public enum AIResponseMessageType
|
|
{
|
|
Text = 0,
|
|
Card = 1,
|
|
Custom = 4
|
|
}
|
|
}
|