27 lines
609 B
C#
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; }
|
|
}
|
|
}
|