PageSwitcher/ISwitchable.cs

14 lines
226 B
C#
Raw Permalink Normal View History

2016-11-16 19:08:37 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PageSwitcher
{
interface ISwitchable
{
void UtilizeState(object state);
}
}