refactor namespaces and imports (#670)
* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
This commit is contained in:
@@ -1,19 +1,18 @@
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace ErsatzTV.Core.Metadata.Nfo
|
||||
namespace ErsatzTV.Core.Metadata.Nfo;
|
||||
|
||||
public class ActorNfo
|
||||
{
|
||||
public class ActorNfo
|
||||
{
|
||||
[XmlElement("name")]
|
||||
public string Name { get; set; }
|
||||
[XmlElement("name")]
|
||||
public string Name { get; set; }
|
||||
|
||||
[XmlElement("role")]
|
||||
public string Role { get; set; }
|
||||
[XmlElement("role")]
|
||||
public string Role { get; set; }
|
||||
|
||||
[XmlElement("order")]
|
||||
public int? Order { get; set; }
|
||||
[XmlElement("order")]
|
||||
public int? Order { get; set; }
|
||||
|
||||
[XmlElement("thumb")]
|
||||
public string Thumb { get; set; }
|
||||
}
|
||||
}
|
||||
[XmlElement("thumb")]
|
||||
public string Thumb { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user