Files
BeWoPlaner/SharedLauncher/DataContract/BeWoProgramPackageDC.cs
rene 4fb9c98ee1 Projekte hinzugefügt:
- BeWoLauncher.csproj
- SharedLauncher.csproj
- LauncherHost.csproj
2021-11-22 15:50:34 +01:00

27 lines
609 B
C#

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace BS.SharedLauncher.DataContract
{
//[DebuggerDisplay("{InternalName} ({FileVersion})")]
[DataContract]
public class BeWoProgramPackageDC
{
public BeWoProgramPackageDC()
{
Files = new List<BeWoProgramFileDC>();
}
[DataMember]
public List<BeWoProgramFileDC> Files { get; set; }
[DataMember]
public string toLoad { get; set; }
}
}