Made key & itemId nullable

This commit is contained in:
ArabCoders 2023-11-23 14:37:37 +03:00
parent 22c90141e7
commit 324c86e14d
1 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,3 @@
#nullable disable
using System;
namespace MediaBrowser.Model.Dto
@ -66,12 +65,12 @@ namespace MediaBrowser.Model.Dto
/// Gets or sets the key.
/// </summary>
/// <value>The key.</value>
public string Key { get; set; }
public string? Key { get; set; }
/// <summary>
/// Gets or sets the item identifier.
/// </summary>
/// <value>The item identifier.</value>
public string ItemId { get; set; }
public string? ItemId { get; set; }
}
}