mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 01:54:42 +01:00
adding stubs for rotten tomatoes
This commit is contained in:
52
MediaBrowser.Model/Entities/ItemReview.cs
Normal file
52
MediaBrowser.Model/Entities/ItemReview.cs
Normal file
@@ -0,0 +1,52 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// Class ItemReview
|
||||
/// </summary>
|
||||
public class ItemReview
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the name of the reviewer.
|
||||
/// </summary>
|
||||
/// <value>The name of the reviewer.</value>
|
||||
public string ReviewerName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the publisher.
|
||||
/// </summary>
|
||||
/// <value>The publisher.</value>
|
||||
public string Publisher { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the date.
|
||||
/// </summary>
|
||||
/// <value>The date.</value>
|
||||
public DateTime Date { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the score.
|
||||
/// </summary>
|
||||
/// <value>The score.</value>
|
||||
public float Score { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the URL.
|
||||
/// </summary>
|
||||
/// <value>The URL.</value>
|
||||
public string Url { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the caption.
|
||||
/// </summary>
|
||||
/// <value>The caption.</value>
|
||||
public string Caption { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the text.
|
||||
/// </summary>
|
||||
/// <value>The text.</value>
|
||||
public string Text { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -25,6 +25,10 @@ namespace MediaBrowser.Model.Entities
|
||||
/// <summary>
|
||||
/// MusicBrainz
|
||||
/// </summary>
|
||||
Musicbrainz
|
||||
Musicbrainz,
|
||||
/// <summary>
|
||||
/// The rotten tomatoes
|
||||
/// </summary>
|
||||
RottenTomatoes
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,6 +47,7 @@
|
||||
<Compile Include="Dto\IItemDto.cs" />
|
||||
<Compile Include="Dto\ItemByNameCounts.cs" />
|
||||
<Compile Include="Entities\IByReferenceItem.cs" />
|
||||
<Compile Include="Entities\ItemReview.cs" />
|
||||
<Compile Include="Net\WebSocketMessage.cs" />
|
||||
<Compile Include="Net\WebSocketMessageType.cs" />
|
||||
<Compile Include="Net\WebSocketState.cs" />
|
||||
|
||||
Reference in New Issue
Block a user