mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-16 16:37:48 +01:00
12 lines
367 B
C#
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; } = "";
|
|
}
|
|
}
|