small code refactoring

This commit is contained in:
Schedel Pascal
2024-06-19 08:10:16 +02:00
parent 20770bed31
commit c9216ac79b
93 changed files with 2753 additions and 5835 deletions

View File

@@ -1,10 +1,9 @@
using System.Collections.Generic;
namespace Pilz.Updating.Administration.Packaging
namespace Pilz.Updating.Administration.Packaging;
public class UpdatePackageTemplate
{
public class UpdatePackageTemplate
{
public string FilesToCopyPath { get; set; }
public List<string> UpdateInstallerAddOns { get; set; } = new List<string>();
}
public string FilesToCopyPath { get; set; }
public List<string> UpdateInstallerAddOns { get; set; } = [];
}