ICoreDataModel.cs 184 B

12345678910
  1. using System.ComponentModel;
  2. using InABox.Core;
  3. namespace comal.timesheets
  4. {
  5. public interface ICoreDataModel : INotifyPropertyChanged
  6. {
  7. IColumns GetColumns();
  8. }
  9. }