Files
cuetools.net/CUETools.Processor/CUETrackMetadata.cs

25 lines
540 B
C#
Raw Permalink Normal View History

using System.ComponentModel;
namespace CUETools.Processor
{
public class CUETrackMetadata
{
[DefaultValue("")]
public string Artist { get; set; }
[DefaultValue("")]
public string Title { get; set; }
[DefaultValue("")]
public string Comment { get; set; }
[DefaultValue("")]
public string ISRC { get; set; }
public CUETrackMetadata()
{
Artist = "";
Title = "";
Comment = "";
ISRC = "";
}
}
}