mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-11 02:35:00 +00:00
16 lines
473 B
C#
16 lines
473 B
C#
using PepperDash.Essentials.Core.Presets;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|
{
|
|
/// <summary>
|
|
/// Base class for presets that can be converted to PresetBase
|
|
/// </summary>
|
|
public abstract class ConvertiblePreset
|
|
{
|
|
/// <summary>
|
|
/// Converts the preset to a PresetBase
|
|
/// </summary>
|
|
/// <returns><see cref="PresetBase"/></returns>
|
|
public abstract PresetBase ConvertCodecPreset();
|
|
}
|
|
} |