mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
CUETools.Processor: split classes into separate files.
This commit is contained in:
21
CUETools.Processor/CUETrackMetadata.cs
Normal file
21
CUETools.Processor/CUETrackMetadata.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace CUETools.Processor
|
||||
{
|
||||
public class CUETrackMetadata
|
||||
{
|
||||
[DefaultValue("")]
|
||||
public string Artist { get; set; }
|
||||
[DefaultValue("")]
|
||||
public string Title { get; set; }
|
||||
[DefaultValue("")]
|
||||
public string ISRC { get; set; }
|
||||
|
||||
public CUETrackMetadata()
|
||||
{
|
||||
Artist = "";
|
||||
Title = "";
|
||||
ISRC = "";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user