using System.Collections.Generic; namespace iiie.WebApiUtils.DBO { public class DboGetMultiple { /// /// The number of data that matched /// public int Count { get; set; } /// /// The data that matched /// public IEnumerable Data { get; set; } } }