director/showHandlers/ShowHandler.cs
Adam R. Grey 47de14dca9 broke for a sec, back to working
fyi `dotnet restore` will say "no need :)", so you have to delete bin/ and obj/ when you need to dotnet restore
2021-09-01 01:16:29 -04:00

10 lines
184 B
C#

using System;
using director;
namespace ShowHandlers
{
public abstract class ShowHandler
{
public abstract void Handle(iCalHoopJumping.CalendarOccurrence evt);
}
}