Files
BeWoPlaner/SharedLauncher/DataContract/UpdatePlanRequest.cs
rene 4fbfdbaf2c Unit Tests erstellt
Informationen ausgelagert
Kleines Spy/Test Programm erstellt
Mehr Exceptions/InvalidUpdateFileRequestException.cs
Launcher Host in Download Server geändert
Download Server macht zusätzlich Abfrage an den Hauptserver
Download geht jetzt stückweise von statten
2022-12-28 16:36:59 +01:00

49 lines
1.2 KiB
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 UpdatePlanRequest
{
public UpdatePlanRequest()
{
PlanerRootFolderExists = false;
DownloadFolderExists = false;
DownloadFolderIsEmpty = true;
ApplyFolderExists = false;
ApplyFolderIsEmpty = true;
}
[DataMember]
public bool PlanerRootFolderExists { get; set; }
[DataMember]
public bool DownloadFolderExists { get; set; }
[DataMember]
public bool DownloadFolderIsEmpty { get; set; }
[DataMember]
public bool ApplyFolderExists { get; set; }
[DataMember]
public bool ApplyFolderIsEmpty { get; set; }
[DataMember]
public List<UpdateFileDC> DownloadedFiles { get; set; }
[DataMember]
public UpdatePlanDC ApplyPackage { get; set; }
[DataMember]
public LoginDC Login { get; set; }
}
}