mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 10:04:24 +00:00
* Removed old LAME encoder from plugins list * CUERipper: main window resizeable * taglib-sharp.dll removed, taglib-sharp source code imported
25 lines
540 B
C#
25 lines
540 B
C#
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 = "";
|
|
}
|
|
}
|
|
}
|