BotSharp/BotSharp.Platform.Articulate/ViewModels/IntentPageViewModel.cs
2019-03-16 11:34:32 -05:00

14 lines
273 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Articulate.ViewModels
{
public class IntentPageViewModel
{
public List<IntentViewModel> Intents { get; set; }
public int Total { get; set; }
}
}