IShell.cs 228 B

1234567891011121314
  1. using System;
  2. namespace InABox.Mobile
  3. {
  4. public interface IShell
  5. {
  6. Guid ID { get; }
  7. IModel Parent { get; }
  8. bool IsChanged();
  9. void Save(string auditmessage);
  10. void Cancel();
  11. }
  12. }