mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
42 lines
794 B
C#
42 lines
794 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.ComponentModel;
|
|
|
|
namespace CUETools.Codecs
|
|
{
|
|
public class UserDefinedEncoderSettings : AudioEncoderSettings
|
|
{
|
|
public UserDefinedEncoderSettings()
|
|
: base()
|
|
{
|
|
}
|
|
|
|
[DefaultValue(null)]
|
|
public string Path
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[DefaultValue(null)]
|
|
public string Parameters
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string SupportedModes
|
|
{
|
|
get
|
|
{
|
|
return m_supported_modes;
|
|
}
|
|
set
|
|
{
|
|
m_supported_modes = value;
|
|
}
|
|
}
|
|
}
|
|
}
|