diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-09-16 00:14:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-16 00:14:47 -0400 |
| commit | f1fcc6e9c4dca4097d9cc4db40b03a02bd0ef8d5 (patch) | |
| tree | feed146000e22fb12e5fd554066b56d28b59046b /MediaBrowser.Api/Reports/Model/ReportRow.cs | |
| parent | 930ce927b06fb481e1201a66251b4fe652e1f12b (diff) | |
| parent | ded141c411aeef039c43970c12347a2e5ea6eabb (diff) | |
Merge pull request #2884 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Api/Reports/Model/ReportRow.cs')
| -rw-r--r-- | MediaBrowser.Api/Reports/Model/ReportRow.cs | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/MediaBrowser.Api/Reports/Model/ReportRow.cs b/MediaBrowser.Api/Reports/Model/ReportRow.cs deleted file mode 100644 index e8e26a053..000000000 --- a/MediaBrowser.Api/Reports/Model/ReportRow.cs +++ /dev/null @@ -1,67 +0,0 @@ -using System.Collections.Generic; - -namespace MediaBrowser.Api.Reports -{ - public class ReportRow - { - /// <summary> - /// Initializes a new instance of the ReportRow class. - /// </summary> - public ReportRow() - { - Columns = new List<ReportItem>(); - } - - /// <summary> Gets or sets the identifier. </summary> - /// <value> The identifier. </value> - public string Id { get; set; } - - /// <summary> - /// Gets or sets a value indicating whether this object has backdrop image. </summary> - /// <value> true if this object has backdrop image, false if not. </value> - public bool HasImageTagsBackdrop { get; set; } - - /// <summary> Gets or sets a value indicating whether this object has image tags. </summary> - /// <value> true if this object has image tags, false if not. </value> - public bool HasImageTagsPrimary { get; set; } - - /// <summary> - /// Gets or sets a value indicating whether this object has image tags logo. </summary> - /// <value> true if this object has image tags logo, false if not. </value> - public bool HasImageTagsLogo { get; set; } - - /// <summary> - /// Gets or sets a value indicating whether this object has local trailer. </summary> - /// <value> true if this object has local trailer, false if not. </value> - public bool HasLocalTrailer { get; set; } - - /// <summary> Gets or sets a value indicating whether this object has lock data. </summary> - /// <value> true if this object has lock data, false if not. </value> - public bool HasLockData { get; set; } - - /// <summary> - /// Gets or sets a value indicating whether this object has embedded image. </summary> - /// <value> true if this object has embedded image, false if not. </value> - public bool HasEmbeddedImage { get; set; } - - /// <summary> Gets or sets a value indicating whether this object has subtitles. </summary> - /// <value> true if this object has subtitles, false if not. </value> - public bool HasSubtitles { get; set; } - - /// <summary> Gets or sets a value indicating whether this object has specials. </summary> - /// <value> true if this object has specials, false if not. </value> - public bool HasSpecials { get; set; } - - /// <summary> Gets or sets the columns. </summary> - /// <value> The columns. </value> - public List<ReportItem> Columns { get; set; } - - /// <summary> Gets or sets the type. </summary> - /// <value> The type. </value> - public ReportIncludeItemTypes RowType { get; set; } - - /// <summary> Gets or sets the identifier of the user. </summary> - /// <value> The identifier of the user. </value> - public string UserId { get; set; } - } -} |
