Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApi/DataTransfer/Exception.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: 490 bytes
Line 
1using System;
2
3namespace HeuristicLab.Services.WebApp.Statistics.WebApi.DataTransfer {
4  public class Exception {
5    public Guid TaskId { get; set; }
6    public Guid JobId { get; set; }
7    public string JobName { get; set; }
8    public Guid UserId { get; set; }
9    public string UserName { get; set; }
10    public Guid ClientId { get; set; }
11    public string ClientName { get; set; }
12    public DateTime Date { get; set; }
13    public string Details { get; set; }
14  }
15}
Note: See TracBrowser for help on using the repository browser.