refactor: moved serialization into core project

This commit is contained in:
2025-04-25 22:20:27 +03:00
parent 791349686b
commit fb363970fc
25 changed files with 65 additions and 63 deletions

View File

@@ -0,0 +1,6 @@
using System;
namespace Syntriax.Engine.Core.Serialization;
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Class)]
public class IgnoreSerializationAttribute : Attribute;