diff options
Diffstat (limited to 'MediaBrowser.Api/Reports/Model/ReportHeader.cs')
| -rw-r--r-- | MediaBrowser.Api/Reports/Model/ReportHeader.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Reports/Model/ReportHeader.cs b/MediaBrowser.Api/Reports/Model/ReportHeader.cs index 81b85954a..6bff9b37e 100644 --- a/MediaBrowser.Api/Reports/Model/ReportHeader.cs +++ b/MediaBrowser.Api/Reports/Model/ReportHeader.cs @@ -16,6 +16,8 @@ namespace MediaBrowser.Api.Reports ItemViewType = ItemViewType.None; Visible = true; CanGroup = true; + ShowHeaderLabel = true; + DisplayType = ReportDisplayType.ScreenExport; } /// <summary> Gets or sets the type of the header field. </summary> @@ -46,6 +48,14 @@ namespace MediaBrowser.Api.Reports /// <value> true if visible, false if not. </value> public bool Visible { get; set; } + /// <summary> Gets or sets the type of the display. </summary> + /// <value> The type of the display. </value> + public ReportDisplayType DisplayType { get; set; } + + /// <summary> Gets or sets a value indicating whether the header label is shown. </summary> + /// <value> true if show header label, false if not. </value> + public bool ShowHeaderLabel { get; set; } + /// <summary> Gets or sets a value indicating whether we can group. </summary> /// <value> true if we can group, false if not. </value> public bool CanGroup { get; set; } |
