mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-15 05:15:17 +00:00
12 lines
398 B
C#
12 lines
398 B
C#
namespace SabreTools.Serialization.Files
|
|
{
|
|
public partial class SoftwareList : XmlFile<Models.SoftwareList.SoftwareList>
|
|
{
|
|
/// <inheritdoc cref="IFileSerializer.Deserialize(string?)"/>
|
|
public static Models.SoftwareList.SoftwareList? Deserialize(string? path)
|
|
{
|
|
var obj = new SoftwareList();
|
|
return obj.DeserializeImpl(path);
|
|
}
|
|
}
|
|
} |