mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Updated the build system, now using .NET Framework v4.0 for most things
This commit is contained in:
33
CUETools.CTDB.Types/CTDBResponseMetaImage.cs
Normal file
33
CUETools.CTDB.Types/CTDBResponseMetaImage.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user