BotSharp/Platform.Articulate/ViewModels/EntityPageViewModel.cs

15 lines
295 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 EntityPageViewModel
{
public List<EntityModel> Entities { get; set; }
public int Total { get; set; }
}
}