mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
21 lines
487 B
C#
21 lines
487 B
C#
|
|
using System;
|
|||
|
|
using System.Xml.Serialization;
|
|||
|
|
|
|||
|
|
namespace CUETools.CTDB
|
|||
|
|
{
|
|||
|
|
[Serializable]
|
|||
|
|
public class CTDBResponseMetaImage
|
|||
|
|
{
|
|||
|
|
[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; }
|
|||
|
|
}
|
|||
|
|
}
|