mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 01:54:42 +01:00
Hide some property setters, init null values, update namespaces
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
#nullable disable
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Model.SyncPlay
|
||||
@@ -9,6 +8,14 @@ namespace MediaBrowser.Model.SyncPlay
|
||||
/// </summary>
|
||||
public class PlayQueueUpdate
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="PlayQueueUpdate"/> class.
|
||||
/// </summary>
|
||||
public PlayQueueUpdate()
|
||||
{
|
||||
Playlist = new List<QueueItem>();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the request type that originated this update.
|
||||
/// </summary>
|
||||
@@ -19,7 +26,7 @@ namespace MediaBrowser.Model.SyncPlay
|
||||
/// Gets or sets the UTC time of the last change to the playing queue.
|
||||
/// </summary>
|
||||
/// <value>The UTC time of the last change to the playing queue.</value>
|
||||
public string LastUpdate { get; set; }
|
||||
public DateTime LastUpdate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the playlist.
|
||||
|
||||
Reference in New Issue
Block a user