Files
cuetools.net/CUETools.CTDB/CTDBResponseMetaImage.cs
chudov 7f07eff0a5 Version 2.0.4
* Better handling of metadata for playstation type CDs
* HTOA filename now starts with 00 instead of 01.00
* CUETools: local database: when the folder is already in database, you can now refresh it instead of removing/adding it
* CUETools: local database: added sort category "by CTDB confidence"
* CUETools: local database: new menu item: locate in explorer
* CUERipper: Option to disable gaps detection
* CUERipper: now correctly submits CDs with data tracks to Freedb
* EAC plugin: now fixes codepage for freedb entries
2012-04-08 23:54:36 +00:00

34 lines
829 B
C#

using System;
using System.Xml.Serialization;
namespace CUETools.CTDB
{
[Serializable]
public class CTDBResponseMetaImage
{
public CTDBResponseMetaImage()
{
}
public CTDBResponseMetaImage(CTDBResponseMetaImage src)
{
this.uri = src.uri;
this.uri150 = src.uri150;
this.height = src.height;
this.width = src.width;
this.primary = src.primary;
}
[XmlAttribute]
public string uri { get; set; }
[XmlAttribute]
public string uri150 { get; set; }
[XmlAttribute]
public int height { get; set; }
[XmlAttribute]
public int width { get; set; }
[XmlAttribute]
public bool primary { get; set; }
}
}