using System; using System.Collections.Generic; using DataModel.Models; namespace WebInterface.Models { /// /// Data refresh status model /// public class RefreshStatusModel { /// /// Minimum timestamp get results for /// public DateTime MinDT { get; set; } /// /// Maximum timestamp to get results for /// public DateTime MaxDT { get; set; } /// /// Cache update results for given timespan /// public List Results { get; set; } } }