Remove dep from contracts to core

This commit is contained in:
Sergey Nazarov 2024-03-21 21:55:20 +04:00
parent aef4be1ef9
commit 77d8dc7a42
4 changed files with 2 additions and 16 deletions

View File

@ -1,8 +0,0 @@
using Nocr.TelegramListener.Core.Events;
namespace Nocr.TelegramListener.Async.Api.Contracts.Events;
public sealed class MediaUpdateReceived : IEvent
{
public Guid Id { get; } = Guid.NewGuid();
}

View File

@ -1,6 +1,4 @@
using Nocr.TelegramListener.Core.Events;
namespace Nocr.TelegramListener.Async.Api.Contracts.Events;
namespace Nocr.TelegramListener.Async.Api.Contracts.Events;
public sealed class MessageReceived : IEvent
{

View File

@ -1,4 +1,4 @@
namespace Nocr.TelegramListener.Core.Events;
namespace Nocr.TelegramListener.Async.Api.Contracts;
public interface IEvent
{

View File

@ -6,8 +6,4 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Nocr.TelegramListener.Core\Nocr.TelegramListener.Core.csproj" PrivateAssets="All"/>
</ItemGroup>
</Project>