mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-16 11:13:05 +00:00
51 lines
1.4 KiB
C#
51 lines
1.4 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
// Runtime Version:4.0.30319.42000
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
//
|
|
//This source code was auto-generated by MonoXSD
|
|
//
|
|
|
|
// Originally sourced from https://github.com/aaru-dps/Aaru/blob/v5.4/CICMMetadata/dotnet/cicm.cs
|
|
// The above header is from the original generated code
|
|
// Some formatting cleanup has been done to fit project standards
|
|
|
|
using System;
|
|
using System.CodeDom.Compiler;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace SabreTools.Data.Models.CICM
|
|
{
|
|
[GeneratedCode("xsd", "0.0.0.0")]
|
|
[Serializable]
|
|
public class PCMCIA
|
|
{
|
|
public Dump CIS { get; set; }
|
|
|
|
public string Compliance { get; set; }
|
|
|
|
public ushort ManufacturerCode { get; set; }
|
|
|
|
[XmlIgnore]
|
|
public bool ManufacturerCodeSpecified { get; set; }
|
|
|
|
public ushort CardCode { get; set; }
|
|
|
|
[XmlIgnore]
|
|
public bool CardCodeSpecified { get; set; }
|
|
|
|
public string Manufacturer { get; set; }
|
|
|
|
public string ProductName { get; set; }
|
|
|
|
[XmlElement("AdditionalInformation")]
|
|
public string[] AdditionalInformation { get; set; }
|
|
}
|
|
}
|