Updated the build system, now using .NET Framework v4.0 for most things

This commit is contained in:
Grigory Chudov
2018-03-11 17:07:48 -04:00
parent a66bfe28cc
commit 929b7de944
905 changed files with 13647 additions and 216371 deletions

View 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; }
}
}