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

15 lines
283 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 IUpdateNameListCommand
{
Task Exexute(NameList nameList);
}
}