diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-09-20 13:22:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-20 13:22:39 -0400 |
| commit | eb2a1330045d802bfe0366df7105c220a36f111f (patch) | |
| tree | 2c1638c424ee9c0837c5de6d6e08a2398da69cdb /MediaBrowser.Api/Reports/Data/ReportOptions.cs | |
| parent | ec426d5c92875639ceac64477ce10fab3e639335 (diff) | |
| parent | a015e1208885bc6a8788db683c4fe47e93dc26b7 (diff) | |
Merge pull request #2897 from MediaBrowser/beta
Beta
Diffstat (limited to 'MediaBrowser.Api/Reports/Data/ReportOptions.cs')
| -rw-r--r-- | MediaBrowser.Api/Reports/Data/ReportOptions.cs | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/MediaBrowser.Api/Reports/Data/ReportOptions.cs b/MediaBrowser.Api/Reports/Data/ReportOptions.cs deleted file mode 100644 index fae91fca3..000000000 --- a/MediaBrowser.Api/Reports/Data/ReportOptions.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; - -namespace MediaBrowser.Api.Reports -{ - - /// <summary> A report options. </summary> - public class ReportOptions<I> - { - /// <summary> Initializes a new instance of the ReportOptions class. </summary> - public ReportOptions() - { - } - - /// <summary> Initializes a new instance of the ReportOptions class. </summary> - /// <param name="header"> . </param> - /// <param name="row"> . </param> - public ReportOptions(ReportHeader header, Func<I, ReportRow, object> column) - { - Header = header; - Column = column; - } - - /// <summary> - /// Initializes a new instance of the ReportOptions class. - /// </summary> - /// <param name="header"></param> - /// <param name="column"></param> - /// <param name="itemID"></param> - public ReportOptions(ReportHeader header, Func<I, ReportRow, object> column, Func<I, object> itemID) - { - Header = header; - Column = column; - ItemID = itemID; - } - - /// <summary> Gets or sets the header. </summary> - /// <value> The header. </value> - public ReportHeader Header { get; set; } - - /// <summary> Gets or sets the column. </summary> - /// <value> The column. </value> - public Func<I, ReportRow, object> Column { get; set; } - - /// <summary> Gets or sets the identifier of the item. </summary> - /// <value> The identifier of the item. </value> - public Func<I, object> ItemID { get; set; } - } -} |
