director/showHandlers/YoutubeHandler.cs

15 lines
390 B
C#
Raw Normal View History

2021-08-21 00:55:33 -04:00
using System;
using director;
namespace ShowHandlers
{
public class YoutubeHandler
{
public static void Handle(iCalHoopJumping.CalendarOccurrence evt)
{
Console.WriteLine("I am a YT handler, it falls to me to...");
Console.WriteLine(" H A N D L E ");
Console.WriteLine($"current time is {DateTime.Now}");
}
}
}