2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Routing / Found.cs
1 //
2 // Microsoft.Web.Services.Routing.Found.cs
3 //
4 // Author: Todd Berman <tberman@gentoo.org>
5 //
6 // (C) 2003 Todd Berman
7
8 using System;
9 using Microsoft.Web.Services;
10
11 namespace Microsoft.Web.Services.Routing
12 {
13
14         public class Found
15         {
16                 private UriList _uris = new UriList ();
17
18                 public UriList At {
19                         get { return _uris; }
20                 }
21         }
22 }