StephaneLenclud@238: using System; StephaneLenclud@238: using System.Collections.Generic; StephaneLenclud@238: using System.Linq; StephaneLenclud@238: using System.Runtime.Serialization; StephaneLenclud@238: using System.Text; StephaneLenclud@238: using System.Threading.Tasks; StephaneLenclud@238: StephaneLenclud@238: namespace SharpLib.Ear StephaneLenclud@238: { StephaneLenclud@238: /// StephaneLenclud@238: /// File property StephaneLenclud@238: /// StephaneLenclud@238: [DataContract] StephaneLenclud@238: [AttributeObject(Id = "Property.File", Name = "File", Description = "Holds a full file path.")] StephaneLenclud@238: public class PropertyFile : Object StephaneLenclud@238: { StephaneLenclud@238: [DataMember] StephaneLenclud@239: public string FullPath { get; set; } = "Select a file"; StephaneLenclud@238: } StephaneLenclud@238: }