* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Referral / For.cs
1 //
2 // Microsoft.Web.Services.Referral.For.cs
3 //
4 // Name: Daniel Kornhauser <dkor@alum.mit.edu>
5 //
6 // Copyright (C) Ximian, Inc. 2003
7 //
8
9 using System;
10 using System.Globalization;
11
12 namespace Microsoft.Web.Services.Referral {
13         
14         public class For
15         {
16                 Uri exact;
17                 Uri prefix;
18
19                 public For ()
20                 {
21                 }
22                 
23                 [MonoTODO]
24                 public Uri Exact {
25                         get {
26                                 return exact;
27                         }
28                         set {
29
30                                 exact = value;
31                         }
32                 }
33
34                 [MonoTODO]
35                 public Uri Prefix {
36                         get {
37                                 return prefix;
38                         }
39
40                         set {
41                                 prefix = value;
42                         }
43                 }
44         }
45 }