You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2025-11-25 22:22:15 +02:00
14 lines
430 B
C#
14 lines
430 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace OneSwiss.OneScript;
|
|
|
|
[XmlRoot("opm-metadata", Namespace = "http://oscript.io/schemas/opm-metadata/1.0")]
|
|
public class OpmMetadata
|
|
{
|
|
[XmlElement("name")]
|
|
public string Name { get; init; } = string.Empty;
|
|
[XmlElement("version")]
|
|
public string Version { get; init; } = string.Empty;
|
|
[XmlElement("executable")]
|
|
public string Executable { get; set; } = string.Empty;
|
|
} |