Blame view

Vrh.Web.OneReport.Lib/Areas/OneReport/ViewModels/DisplayViewModel.cs 583 Bytes
ab9f2fbe   Schwirg László   Add project files.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  namespace Vrh.OneReport.Lib.Areas.OneReport.ViewModels
  {
      using System;
      using System.Collections.Generic;
      using System.Linq;
      using System.Web;
  
      public class DisplayViewModel
      {
          public enum ReportAction
          {
              Display,
              File
          }
  
          public enum ReportFormat
          {
              HTML,
              PDF
          }
  
          public ReportAction Action { get; set; }
  
          public ReportFormat Format { get; set; }
  
          public string ReportId { get; set; }
  
          public string DisplayName { get; set; }
      }
  }