IShell.cs 101 B

1234567
  1. namespace comal.timesheets
  2. {
  3. public interface IShell
  4. {
  5. IModel Parent { get; }
  6. }
  7. }