source:
trunk/sources/HeuristicLab.CEDMA.DB.Interfaces/IAgent.cs
@
359
Last change on this file since 359 was 357, checked in by gkronber, 17 years ago | |
---|---|
File size: 284 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | |
6 | namespace HeuristicLab.CEDMA.DB.Interfaces { |
7 | public interface IAgent { |
8 | string Name { get; } |
9 | AgentStatus Status { get; } |
10 | byte[] RawData { get; } |
11 | void Save(); |
12 | } |
13 | } |
Note: See TracBrowser
for help on using the repository browser.