mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 22:08:27 +01:00
ReSharper Reformat: Properties to expression bodied form.
This commit is contained in:
@@ -31,10 +31,7 @@ namespace MediaBrowser.Controller.Entities
|
||||
/// <exception cref="System.ArgumentOutOfRangeException">Rating;A 0 to 10 rating is required for UserItemData.</exception>
|
||||
public double? Rating
|
||||
{
|
||||
get
|
||||
{
|
||||
return _rating;
|
||||
}
|
||||
get => _rating;
|
||||
set
|
||||
{
|
||||
if (value.HasValue)
|
||||
|
||||
Reference in New Issue
Block a user