namespace SDKAdapter.OperationPlatform.Models { public class OP_ListResponse<T> where T:class { public long Count { get; set; } public List<T> Items { get; set; } } }