Add IAcSerialiyationToJson interface

This commit is contained in:
jozsef.b@aycode.com 2024-01-20 10:35:41 +01:00
parent e7456a42bc
commit 1a1fd2397d
3 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,5 @@
namespace AyCode.Core.Interfaces;
public interface IAcSerializableToJson
{
}

View File

@ -11,4 +11,8 @@
<Folder Include="Sessions\" /> <Folder Include="Sessions\" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AyCode.Core\AyCode.Core.csproj" />
</ItemGroup>
</Project> </Project>

View File

@ -1,10 +1,11 @@
 
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using AyCode.Core.Interfaces;
namespace AyCode.Interfaces.Entities namespace AyCode.Interfaces.Entities
{ {
public interface IEntity public interface IEntity : IAcSerializableToJson
{ {
} }