2004-01-25 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / class / corlib / System.Reflection / AssemblyCompanyAttribute.cs
1 //
2 // System.Reflection.AssemblyCompanyAttribute.cs
3 //
4 // Author: Duncan Mak <duncan@ximian.com>
5 //
6 // (C) 2002 Ximian, Inc. http://www.ximian.com
7 //
8
9 using System;
10
11 namespace System.Reflection
12 {
13         [AttributeUsage (AttributeTargets.Assembly)]
14         public sealed class AssemblyCompanyAttribute : Attribute
15         {
16                 // Field
17                 private string name;
18                 
19                 // Constructor
20                 public AssemblyCompanyAttribute (string company)
21                 {
22                         name = company;
23                 }
24                 
25                 // Properties
26                 public string Company
27                 {
28                         get { return name; }
29                 }
30         }
31 }