SharpLibEar/PropertyFile.cs
author StephaneLenclud
Wed, 31 Aug 2016 20:20:32 +0200
changeset 265 82e87f4956ea
parent 238 c92587ddabcd
permissions -rw-r--r--
Actions can now have children.
StephaneLenclud@238
     1
using System;
StephaneLenclud@238
     2
using System.Collections.Generic;
StephaneLenclud@238
     3
using System.Linq;
StephaneLenclud@238
     4
using System.Runtime.Serialization;
StephaneLenclud@238
     5
using System.Text;
StephaneLenclud@238
     6
using System.Threading.Tasks;
StephaneLenclud@238
     7
StephaneLenclud@238
     8
namespace SharpLib.Ear
StephaneLenclud@238
     9
{
StephaneLenclud@238
    10
    /// <summary>
StephaneLenclud@238
    11
    /// File property
StephaneLenclud@238
    12
    /// </summary>
StephaneLenclud@238
    13
    [DataContract]
StephaneLenclud@238
    14
    [AttributeObject(Id = "Property.File", Name = "File", Description = "Holds a full file path.")]
StephaneLenclud@238
    15
    public class PropertyFile : Object
StephaneLenclud@238
    16
    {
StephaneLenclud@238
    17
        [DataMember]
StephaneLenclud@239
    18
        public string FullPath { get; set; } = "Select a file";
StephaneLenclud@238
    19
    }
StephaneLenclud@238
    20
}