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

15 lines
312 B
C#

using BotSharp.Platform.Articulate.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Articulate.ViewModels
{
public class DomainPageViewModel
{
public List<DomainModel> Domains { get; set; }
public int Total { get; set; }
}
}