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

15 lines
284 B
C#

using Apollon.Domain.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Apollon.Domain.Commands
{
public interface ICreateNameListCommand
{
Task Execute(NameList nameList);
}
}