Files
flowframes/CodeLegacy/Data/ExportSettings.cs

12 lines
367 B
C#

namespace Flowframes.Data
{
public class OutputSettings
{
public Enums.Output.Format Format { get; set; }
public Enums.Encoding.Encoder Encoder { get; set; }
public Enums.Encoding.PixelFormat PixelFormat { get; set; }
public string Quality { get; set; } = "";
public string CustomQuality { get; set; } = "";
}
}