Added stubbed implementations for classes.
[mono.git] / mcs / class / corlib / System.IO / FileAttributes.cs
1 //------------------------------------------------------------------------------
2 // 
3 // System.IO.FileAttributes.cs 
4 //
5 // Copyright (C) 2001 Moonlight Enterprises, All Rights Reserved
6 // 
7 // Author:         Jim Richardson, develop@wtfo-guru.com
8 // Created:        Monday, August 13, 2001 
9 //
10 //------------------------------------------------------------------------------
11
12
13 namespace System.IO
14 {
15         public enum FileAttributes
16         {
17                 Archive,
18                 Compressed, 
19                 Device, // Reserved for future use. 
20                 Directory,
21                 Encrypted,
22                 Hidden,
23                 Normal,
24                 NotContentIndexed,
25                 Offline,
26                 ReadOnly,
27                 ReparsePoint,
28                 SparseFile,
29                 System,
30                 Temporary 
31         }
32
33 }