diff -r 1a1c2ae3a29c -r c92587ddabcd SharpLibEar/PropertyFile.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SharpLibEar/PropertyFile.cs Thu Aug 18 14:35:50 2016 +0200 @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.Text; +using System.Threading.Tasks; + +namespace SharpLib.Ear +{ + /// + /// File property + /// + [DataContract] + [AttributeObject(Id = "Property.File", Name = "File", Description = "Holds a full file path.")] + public class PropertyFile : Object + { + [DataMember] + public string FullPath { get; set; } = ""; + } +}