diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-18 15:57:28 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-18 15:57:28 -0400 |
| commit | 32bc545a854480f11bbb7dbaa4f5205f11acc7d6 (patch) | |
| tree | b792b6c932a6f77cec1535267e1096251bc8ab95 /MediaBrowser.Model/IO/FileSystemEntryInfo.cs | |
| parent | 48d60b2f6ad2cf88bd5336025446b005d24fe4ee (diff) | |
removed unused attributes
Diffstat (limited to 'MediaBrowser.Model/IO/FileSystemEntryInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/IO/FileSystemEntryInfo.cs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/MediaBrowser.Model/IO/FileSystemEntryInfo.cs b/MediaBrowser.Model/IO/FileSystemEntryInfo.cs index e6cfaa535..dc4840456 100644 --- a/MediaBrowser.Model/IO/FileSystemEntryInfo.cs +++ b/MediaBrowser.Model/IO/FileSystemEntryInfo.cs @@ -1,32 +1,27 @@ -using ProtoBuf; - + namespace MediaBrowser.Model.IO { /// <summary> /// Class FileSystemEntryInfo /// </summary> - [ProtoContract] public class FileSystemEntryInfo { /// <summary> /// Gets or sets the name. /// </summary> /// <value>The name.</value> - [ProtoMember(1)] public string Name { get; set; } /// <summary> /// Gets or sets the path. /// </summary> /// <value>The path.</value> - [ProtoMember(2)] public string Path { get; set; } /// <summary> /// Gets or sets the type. /// </summary> /// <value>The type.</value> - [ProtoMember(3)] public FileSystemEntryType Type { get; set; } } |
