SharpLibEar/PropertyFile.cs
author StephaneLenclud
Thu, 18 Aug 2016 14:35:50 +0200
changeset 238 c92587ddabcd
child 239 dd7770b97916
permissions -rw-r--r--
Support for launch action and WMC HID 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@238
    18
        public string FullPath { get; set; } = "";
StephaneLenclud@238
    19
    }
StephaneLenclud@238
    20
}