diff options
| author | Stepan <ste.martinek+git@gmail.com> | 2020-11-01 10:47:31 +0100 |
|---|---|---|
| committer | Stepan <ste.martinek+git@gmail.com> | 2020-11-01 10:47:31 +0100 |
| commit | 59619b6ea74ab555977fd213f6ee5737897b0fbd (patch) | |
| tree | dbe590f079d354632bc9192ee7fb24e59c541756 /Emby.Naming/Video/VideoInfo.cs | |
| parent | 4f320308f333507a324740248c7dd025085a7d67 (diff) | |
Enable nullable in Emby.Naming
Diffstat (limited to 'Emby.Naming/Video/VideoInfo.cs')
| -rw-r--r-- | Emby.Naming/Video/VideoInfo.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Naming/Video/VideoInfo.cs b/Emby.Naming/Video/VideoInfo.cs index ea74c40e2a..930fdb33f8 100644 --- a/Emby.Naming/Video/VideoInfo.cs +++ b/Emby.Naming/Video/VideoInfo.cs @@ -12,7 +12,7 @@ namespace Emby.Naming.Video /// Initializes a new instance of the <see cref="VideoInfo" /> class. /// </summary> /// <param name="name">The name.</param> - public VideoInfo(string name) + public VideoInfo(string? name) { Name = name; @@ -25,7 +25,7 @@ namespace Emby.Naming.Video /// 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 year. |
