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