SharpLibEar/PropertyFile.cs
changeset 238 c92587ddabcd
child 239 dd7770b97916
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/SharpLibEar/PropertyFile.cs	Thu Aug 18 14:35:50 2016 +0200
     1.3 @@ -0,0 +1,20 @@
     1.4 +using System;
     1.5 +using System.Collections.Generic;
     1.6 +using System.Linq;
     1.7 +using System.Runtime.Serialization;
     1.8 +using System.Text;
     1.9 +using System.Threading.Tasks;
    1.10 +
    1.11 +namespace SharpLib.Ear
    1.12 +{
    1.13 +    /// <summary>
    1.14 +    /// File property
    1.15 +    /// </summary>
    1.16 +    [DataContract]
    1.17 +    [AttributeObject(Id = "Property.File", Name = "File", Description = "Holds a full file path.")]
    1.18 +    public class PropertyFile : Object
    1.19 +    {
    1.20 +        [DataMember]
    1.21 +        public string FullPath { get; set; } = "";
    1.22 +    }
    1.23 +}