Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Clients.Hive/3.3/ServiceClients/IHiveItem.cs @ 6976

Last change on this file since 6976 was 6976, checked in by ascheibe, 12 years ago

#1672 integrate the Hive client projects into trunk (Hive Job Manager and Administrator)

File size: 306 bytes
Line 
1using System;
2using System.ComponentModel;
3using HeuristicLab.Core;
4
5namespace HeuristicLab.Clients.Hive {
6  public interface IHiveItem : IItem, INotifyPropertyChanged {
7    Guid Id { get; set; }
8    bool Modified { get; }
9
10    void Store();
11
12    event EventHandler ModifiedChanged;
13  }
14}
Note: See TracBrowser for help on using the repository browser.