* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
18 lines
353 B
C#
18 lines
353 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace ErsatzTV.Core.Metadata.Nfo;
|
|
|
|
public class ActorNfo
|
|
{
|
|
[XmlElement("name")]
|
|
public string Name { get; set; }
|
|
|
|
[XmlElement("role")]
|
|
public string Role { get; set; }
|
|
|
|
[XmlElement("order")]
|
|
public int? Order { get; set; }
|
|
|
|
[XmlElement("thumb")]
|
|
public string Thumb { get; set; }
|
|
} |