mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-18 01:17:47 +01:00
Completely revamped output settings (quality settings WIP)
This commit is contained in:
20
Code/Data/EncoderInfo.cs
Normal file
20
Code/Data/EncoderInfo.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Flowframes.Data
|
||||
{
|
||||
public class EncoderInfo
|
||||
{
|
||||
public string Name { get; set; } = "unknown";
|
||||
|
||||
public EncoderInfo() { }
|
||||
|
||||
public EncoderInfo(string name)
|
||||
{
|
||||
Name = name;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user