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