2021-11-22 15:50:34 +01:00
|
|
|
|
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]
|
2022-12-28 16:36:59 +01:00
|
|
|
|
public class UpdatePlanRequest
|
2021-11-22 15:50:34 +01:00
|
|
|
|
{
|
2022-12-28 16:36:59 +01:00
|
|
|
|
public UpdatePlanRequest()
|
2021-11-22 15:50:34 +01:00
|
|
|
|
{
|
2022-08-30 09:12:20 +02:00
|
|
|
|
PlanerRootFolderExists = false;
|
|
|
|
|
|
DownloadFolderExists = false;
|
|
|
|
|
|
DownloadFolderIsEmpty = true;
|
|
|
|
|
|
ApplyFolderExists = false;
|
|
|
|
|
|
ApplyFolderIsEmpty = true;
|
2021-11-22 15:50:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[DataMember]
|
2022-08-30 09:12:20 +02:00
|
|
|
|
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]
|
2022-12-28 16:36:59 +01:00
|
|
|
|
public List<UpdateFileDC> DownloadedFiles { get; set; }
|
2022-08-30 09:12:20 +02:00
|
|
|
|
|
|
|
|
|
|
[DataMember]
|
2022-12-28 16:36:59 +01:00
|
|
|
|
public UpdatePlanDC ApplyPackage { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[DataMember]
|
|
|
|
|
|
public LoginDC Login { get; set; }
|
2021-11-22 15:50:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|