Files
Apollon/Apollon.Domain/Commands/IDeleteNameListCommand.cs
Natlinux ee8c687f5c Namelist
2022-11-13 18:10:38 +01:00

14 lines
245 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Apollon.Domain.Commands
{
public interface IDeleteNameListCommand
{
Task Execute(Guid id);
}
}