~bas-dotbas/do/win32-next

« back to all changes in this revision

Viewing changes to PluginLib/src/IObject.cs

  • Committer: djsiegel at gmail
  • Date: 2007-10-13 21:55:22 UTC
  • Revision ID: djsiegel@gmail.com-20071013215522-n0vjgog0tyjfnpno
Restructured plugins library.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// IObject.cs created with MonoDevelop
2
 
// User: dave at 1:38 PM 8/29/2007
3
 
//
4
 
// To change standard headers go to Edit->Preferences->Coding->Standard Headers
5
 
//
6
 
 
7
 
using System;
8
 
 
9
 
namespace Do.PluginLib
10
 
{
11
 
        
12
 
        public interface IObject
13
 
        {
14
 
                string Name { get; }
15
 
                string Description { get; }
16
 
                string Icon { get; }
17
 
        }
18
 
}