22 lines
581 B
C#
22 lines
581 B
C#
using System.Collections.Generic;
|
|
using Kendo.Mvc.UI;
|
|
|
|
namespace Kreta.Web.Classes
|
|
{
|
|
public class ExtendedDataSourceResult : DataSourceResult
|
|
{
|
|
|
|
public ExtendedDataSourceResult() { }
|
|
|
|
public ExtendedDataSourceResult(DataSourceResult dataSourceResult)
|
|
{
|
|
AggregateResults = dataSourceResult.AggregateResults;
|
|
Data = dataSourceResult.Data;
|
|
Errors = dataSourceResult.Errors;
|
|
Total = dataSourceResult.Total;
|
|
}
|
|
|
|
public Dictionary<string, object> ExtendedProperties { get; set; }
|
|
|
|
}
|
|
}
|