Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.DB.Interfaces/IAgent.cs @ 357

Last change on this file since 357 was 357, checked in by gkronber, 16 years ago

worked on ticket #187. code is a mess. work-in-progress.

File size: 284 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace 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.