BotSharp/BotSharp.Platform.Dialogflow/Models/EntityModel.cs
2019-03-16 19:55:55 -05:00

19 lines
384 B
C#

using BotSharp.Platform.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Dialogflow.Models
{
public class EntityModel : EntityBase
{
public string Agent { get; set; }
public string EntityName { get; set; }
public string Type { get; set; }
public string UiColor { get; set; }
}
}