This commit is contained in:
mmrbnjd
2025-06-28 17:05:54 +03:30
parent b1c9fa15c1
commit 279940198a
2 changed files with 11 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Dtos
namespace Common.Models
{
public class IdName<T>
{

View File

@@ -0,0 +1,10 @@

using Hushian.Application.Models.Message;
namespace Common.Contracts.Infrastructure
{
public interface IMessageSender
{
Task<bool> SendMassage(Message message);
}
}