BotSharp/BotSharp.RestApi/Dialogflow/DialogflowAllEntityViewModel.cs

18 lines
337 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi.Dialogflow
{
public class DialogflowAllEntityViewModel
{
public int Count { get; set; }
public string Id { get; set; }
public string Name { get; set; }
public string Preview { get; set; }
}
}