mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 10:04:24 +00:00
28 lines
761 B
C#
28 lines
761 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CUETools.Codecs
|
|
{
|
|
/// <summary>
|
|
/// Default property value for each encoder mode attribute
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
|
|
public class DefaultValueForModeAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// Resource manager to use;
|
|
/// </summary>
|
|
public object[] m_values;
|
|
|
|
/// <summary>
|
|
/// Construct the description attribute
|
|
/// </summary>
|
|
/// <param name="text"></param>
|
|
public DefaultValueForModeAttribute(params object[] values)
|
|
{
|
|
this.m_values = values;
|
|
}
|
|
}
|
|
}
|