aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/QuickConnect/QuickConnectResult.cs
diff options
context:
space:
mode:
authorConfusedPolarBear <33811686+ConfusedPolarBear@users.noreply.github.com>2020-06-08 15:48:18 -0500
committerConfusedPolarBear <33811686+ConfusedPolarBear@users.noreply.github.com>2020-06-08 15:48:18 -0500
commit0d6a63bf84d7ad971128c6ba6cad77e76e023536 (patch)
tree1e8e533022ba43fa0c0bfa233b6ecc50680b7cff /MediaBrowser.Model/QuickConnect/QuickConnectResult.cs
parent35ff2be9d766ba4f5d85f859d86ff03ce588795f (diff)
Make all properties nullable
Diffstat (limited to 'MediaBrowser.Model/QuickConnect/QuickConnectResult.cs')
-rw-r--r--MediaBrowser.Model/QuickConnect/QuickConnectResult.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/MediaBrowser.Model/QuickConnect/QuickConnectResult.cs b/MediaBrowser.Model/QuickConnect/QuickConnectResult.cs
index bc3fd0046..32d7f6aba 100644
--- a/MediaBrowser.Model/QuickConnect/QuickConnectResult.cs
+++ b/MediaBrowser.Model/QuickConnect/QuickConnectResult.cs
@@ -15,36 +15,36 @@ namespace MediaBrowser.Model.QuickConnect
/// <summary>
/// Gets or sets the secret value used to uniquely identify this request. Can be used to retrieve authentication information.
/// </summary>
- public string Secret { get; set; }
+ public string? Secret { get; set; }
/// <summary>
/// Gets or sets the public value used to uniquely identify this request. Can only be used to authorize the request.
/// </summary>
- public string Lookup { get; set; }
+ public string? Lookup { get; set; }
/// <summary>
/// Gets or sets the user facing code used so the user can quickly differentiate this request from others.
/// </summary>
- public string Code { get; set; }
+ public string? Code { get; set; }
/// <summary>
/// Gets or sets the device friendly name.
/// </summary>
- public string FriendlyName { get; set; }
+ public string? FriendlyName { get; set; }
/// <summary>
/// Gets or sets the private access token.
/// </summary>
- public string Authentication { get; set; }
+ public string? Authentication { get; set; }
/// <summary>
/// Gets or sets an error message.
/// </summary>
- public string Error { get; set; }
+ public string? Error { get; set; }
/// <summary>
/// Gets or sets the DateTime that this request was created.
/// </summary>
- public DateTime DateAdded { get; set; }
+ public DateTime? DateAdded { get; set; }
}
}