02a19aff56
Make csproj templates first-class in dotnet-new.
12 lines
238 B
C#
12 lines
238 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebApplication.Services
|
|
{
|
|
public interface ISmsSender
|
|
{
|
|
Task SendSmsAsync(string number, string message);
|
|
}
|
|
}
|