Minor changes

This commit is contained in:
Bond-009
2020-06-22 15:35:53 +02:00
parent a3bc82727a
commit 3d42f37538
4 changed files with 22 additions and 32 deletions

View File

@@ -1,6 +1,3 @@
#nullable disable
using System;
namespace MediaBrowser.Model.Updates
{
/// <summary>
@@ -12,12 +9,12 @@ namespace MediaBrowser.Model.Updates
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
public string? Name { get; set; }
/// <summary>
/// Gets or sets the URL.
/// </summary>
/// <value>The URL.</value>
public string Url { get; set; }
public string? Url { get; set; }
}
}