Files
flowframes/CodeLegacy/Data/ExportSettings.cs

12 lines
367 B
C#
Raw Normal View History

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; } = "";
2023-02-05 21:31:48 +01:00
public string CustomQuality { get; set; } = "";
}
}