SharpLibEar/PropertyFile.cs
author StephaneLenclud
Thu, 18 Aug 2016 18:49:03 +0200
changeset 241 3b5a94f31400
parent 238 c92587ddabcd
permissions -rw-r--r--
Adding support for HID Keyboard events.
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
}