24 lines
500 B
C#
24 lines
500 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 DownloadPlanerRequestDC
|
|
{
|
|
public DownloadPlanerRequestDC()
|
|
{
|
|
|
|
}
|
|
|
|
[DataMember]
|
|
public string VersionXML { get; set; }
|
|
}
|
|
}
|