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:
@@ -16,14 +16,8 @@ namespace MediaBrowser.Model.Drawing
|
||||
/// <value>The height.</value>
|
||||
public double Height
|
||||
{
|
||||
get
|
||||
{
|
||||
return _height;
|
||||
}
|
||||
set
|
||||
{
|
||||
_height = value;
|
||||
}
|
||||
get => _height;
|
||||
set => _height = value;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -32,8 +26,8 @@ namespace MediaBrowser.Model.Drawing
|
||||
/// <value>The width.</value>
|
||||
public double Width
|
||||
{
|
||||
get { return _width; }
|
||||
set { _width = value; }
|
||||
get => _width;
|
||||
set => _width = value;
|
||||
}
|
||||
|
||||
public bool Equals(ImageSize size)
|
||||
|
||||
Reference in New Issue
Block a user