BotSharp/Platform.Articulate/ViewModels/IntentPageViewModel.cs

15 lines
298 B
C#
Raw Normal View History

using Platform.Articulate.Models;
2018-09-28 00:49:43 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Articulate.ViewModels
2018-09-28 00:49:43 +00:00
{
public class IntentPageViewModel
{
2018-09-30 21:52:33 +00:00
public List<IntentViewModel> Intents { get; set; }
2018-09-28 00:49:43 +00:00
public int Total { get; set; }
}
}