27 lines
666 B
C#
27 lines
666 B
C#
using BS.SharedLauncher.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace BS.SharedLauncher.DataContract
|
|
{
|
|
[DebuggerDisplay("{RelativePath} ({Checksum})")]
|
|
[DataContract, Serializable()]
|
|
public class PlanerFileInfoDC
|
|
{
|
|
[DataMember, XmlAttribute]
|
|
public string Name { get; set; }
|
|
|
|
[DataMember, XmlAttribute]
|
|
public string RelativePath { get; set; }
|
|
|
|
[DataMember, XmlAttribute]
|
|
public string Checksum { get; set; }
|
|
}
|
|
}
|