mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
CUETools: fix profiles
This commit is contained in:
@@ -30,6 +30,15 @@ namespace CUETools.Processor
|
||||
}
|
||||
}
|
||||
|
||||
public CUEConfigAdvanced(CUEConfigAdvanced src)
|
||||
{
|
||||
// Iterate through each property and call SetValue()
|
||||
foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
|
||||
{
|
||||
property.SetValue(this, property.GetValue(src));
|
||||
}
|
||||
}
|
||||
|
||||
internal static XmlSerializer serializer = new XmlSerializer(typeof(CUEConfigAdvanced));
|
||||
[DefaultValue("i"), Category("Freedb"), DisplayName("Email user")]
|
||||
public string FreedbUser { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user