Merge pull request #10969 from barronpm/progress-cleanup

Progress cleanup
This commit is contained in:
Bond-009 2024-02-07 16:24:36 +01:00 committed by GitHub
commit 143ef71528
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 44 additions and 448 deletions

View file

@ -1,23 +0,0 @@
#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Controller.MediaEncoding
{
public class ImageEncodingOptions
{
public string InputPath { get; set; }
public int? Width { get; set; }
public int? Height { get; set; }
public int? MaxWidth { get; set; }
public int? MaxHeight { get; set; }
public int? Quality { get; set; }
public string Format { get; set; }
}
}

View file

@ -1,11 +0,0 @@
#pragma warning disable CS1591
namespace MediaBrowser.Controller.MediaEncoding
{
/// <summary>
/// Class MediaEncoderHelpers.
/// </summary>
public static class MediaEncoderHelpers
{
}
}