Changeset 2546 for trunk/sources/HeuristicLab.Core/3.3/Interfaces
- Timestamp:
- 12/07/09 02:44:23 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Core/3.3/Interfaces
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/Interfaces/IItem.cs
r2526 r2546 23 23 using System.Collections.Generic; 24 24 using System.Text; 25 using System.Drawing; 25 26 26 27 namespace HeuristicLab.Core { … … 29 30 /// </summary> 30 31 public interface IItem : ICloneable { 32 string Name { get; } 33 string Description { get; } 34 Image Image { get; } 35 31 36 /// <summary> 32 37 /// Creates a deep clone of this item.
Note: See TracChangeset
for help on using the changeset viewer.