mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 14:33:06 +03:00
ReSharper Reformat: Properties to expression bodied form.
This commit is contained in:
@@ -20,8 +20,8 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||
|
||||
public EncodingJobOptions Options
|
||||
{
|
||||
get { return (EncodingJobOptions)BaseRequest; }
|
||||
set { BaseRequest = value; }
|
||||
get => (EncodingJobOptions)BaseRequest;
|
||||
set => BaseRequest = value;
|
||||
}
|
||||
|
||||
public string Id { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user