49 lines
1.2 KiB
C#
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; }
|
|
}
|
|
}
|