Use nullable enum type instead of strings

This commit is contained in:
Brandon Nguyen
2021-07-05 16:52:52 -07:00
parent df17c67f11
commit d0c5e25ec0
3 changed files with 56 additions and 6 deletions

View File

@@ -34,7 +34,7 @@ namespace MediaBrowser.Model.Session
public int? AudioChannels { get; set; }
public string HardwareAccelerationType { get; set; }
public HardwareEncodingType? HardwareAccelerationType { get; set; }
public TranscodeReason[] TranscodeReasons { get; set; }
}