9 lines
241 B
C#
9 lines
241 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Pilz.Updating.Administration.Packaging;
|
|
|
|
public class UpdatePackageTemplate
|
|
{
|
|
public string FilesToCopyPath { get; set; }
|
|
public List<string> UpdateInstallerAddOns { get; set; } = [];
|
|
} |