~ubuntu-branches/ubuntu/karmic/mono-addins/karmic

« back to all changes in this revision

Viewing changes to Test/SystemInfoExtension/ModuleExtensionNode.cs

  • Committer: Bazaar Package Importer
  • Author(s): Mirco Bauer
  • Date: 2007-07-14 12:07:48 UTC
  • Revision ID: james.westby@ubuntu.com-20070714120748-2elczfsjlrdsrpms
Tags: upstream-0.2
ImportĀ upstreamĀ versionĀ 0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
using System;
 
3
using Mono.Addins;
 
4
 
 
5
namespace SystemInfoExtension
 
6
{
 
7
        public class ModuleExtensionNode: ExtensionNode
 
8
        {
 
9
                [NodeAttribute]
 
10
                string name;
 
11
                
 
12
                [NodeAttribute (Required=false)]
 
13
                string version;
 
14
 
 
15
                public string Name {
 
16
                        get { return name; }
 
17
                }
 
18
                
 
19
                public string Version {
 
20
                        get { return version; }
 
21
                }
 
22
        }
 
23
}