Add a bunch of new classes to reduce warnings from Mint
[mono.git] / mcs / class / corlib / System.Security.Principal / IIdentity.cs
1 //
2 // System.Security.Principal.IIdentity.cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace System.Security.Principal {
11
12         public interface IIdentity {
13
14                 string AuthenticationType {
15                         get;
16                 }
17
18                 bool IsAuthenticated {
19                         get;
20                 }
21
22                 string Name {
23                         get;
24                 }
25         }
26 }