Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApi/DataTransfer/ExceptionPage.cs @ 12560

Last change on this file since 12560 was 12560, checked in by dglaser, 9 years ago

#2388:

HeuristicLab.Services.WebApp-3.3:

  • updated about page

HeuristicLab.Services.WebApp.Statistics-3.3:

  • added missing files
File size: 261 bytes
RevLine 
[12560]1
2using System.Collections.Generic;
3
4namespace HeuristicLab.Services.WebApp.Statistics.WebApi.DataTransfer {
5  public class ExceptionPage {
6    public int TotalExceptions { get; set; }
7    public IEnumerable<Exception> Exceptions { get; set; }
8  }
9}
Note: See TracBrowser for help on using the repository browser.