25 lines
587 B
C#
25 lines
587 B
C#
using BS.SharedLauncher.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace BS.SharedLauncher.DataContract
|
|
{
|
|
[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; }
|
|
}
|
|
}
|