IMainApplicationWindowContract.cs 398 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OOO_WriteAndClear.MVP.MVPInterfaces
  7. {
  8. public interface IMainApplicationWindowContract
  9. {
  10. public interface IView
  11. {
  12. }
  13. public interface IPresenter
  14. {
  15. }
  16. public interface IModel
  17. {
  18. }
  19. }
  20. }