mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 21:08:27 +01:00
ReSharper Reformat: Properties to expression bodied form.
This commit is contained in:
@@ -9,13 +9,7 @@ namespace MediaBrowser.Controller.Net
|
||||
/// Gets or sets the user identifier.
|
||||
/// </summary>
|
||||
/// <value>The user identifier.</value>
|
||||
public Guid UserId
|
||||
{
|
||||
get
|
||||
{
|
||||
return User == null ? Guid.Empty : User.Id;
|
||||
}
|
||||
}
|
||||
public Guid UserId => User == null ? Guid.Empty : User.Id;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the device identifier.
|
||||
|
||||
Reference in New Issue
Block a user