Files
ASP.NET/IntroductorySessions/Session05/Projects/OOP/ISender.cs
T

14 lines
209 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OOP
{
public interface ISender
{
void Send(string to);
}
}