BotSharp/BotSharp.RestApi/Articulate/IntentPageViewModel.cs
2018-09-27 19:49:43 -05:00

15 lines
297 B
C#

using BotSharp.Core.Engines.Articulate;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.RestApi.Articulate
{
public class IntentPageViewModel
{
public List<IntentModel> Intents { get; set; }
public int Total { get; set; }
}
}