Files
BeWoPlaner/SharedLauncher/DataContract/DownloadPlanerRequestDC.cs
rene 25438ebd2d Zwischenstand:
- Download Req und Res eingeführt
- Version XML + version.config
2022-03-09 16:29:00 +01:00

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; }
}
}