* Added emember.cs and seealso.cs which help to flesh out the dtd
[mono.git] / mcs / doctools / lib / seealso.cs
1 // seealso.cs - Mono Documentation Lib
2 //
3 // Author: Adam Treat <manyoso@yahoo.com>
4 // (c) 2002 Adam Treat
5 // Licensed under the terms of the GNU GPL
6
7 using System;
8
9 namespace Mono.Document.Library {
10
11         public class DocSeeAlso {
12
13                 string name, cref;
14                 
15                 public DocSeeAlso ()
16                 {
17                 }
18
19                 public string Name
20                 {
21                         get {return name;}
22                         set {name = value;}
23                 }
24                 
25                 public string Cref
26                 {
27                         get {return cref;}
28                         set {cref = value;}
29                 }
30
31         }
32 }