DisplayViewModel.cs 583 Bytes
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; }
    }
}