author | StephaneLenclud |
Sun, 21 Aug 2016 19:31:08 +0200 | |
changeset 251 | f60cfcb98c9a |
parent 238 | c92587ddabcd |
permissions | -rw-r--r-- |
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 |
} |