- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using WpfApp29.Models;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Media;
- namespace WpfApp29.UserControls.Base
- {
- public interface ITaskUserControl
- {
- public abstract void HasTask(Task task);
- }
- }
|