TaskBaseUserControl.cs 334 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using WpfApp29.Models;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Media;
  9. namespace WpfApp29.UserControls.Base
  10. {
  11. public interface ITaskUserControl
  12. {
  13. public abstract void HasTask(Task task);
  14. }
  15. }