refactor: moved type container one directory up

This commit is contained in:
2025-04-25 23:01:37 +03:00
parent d102c5471d
commit 5812f43117

View File

@@ -1,13 +0,0 @@
using System;
namespace Syntriax.Engine.Core.Serialization;
public class TypeContainer
{
public object? Value { get; set; } = string.Empty;
public string Type { get; set; } = string.Empty;
public TypeContainer() { }
public TypeContainer(Type type) { Type = type.FullName ?? string.Empty; }
public TypeContainer(object? value) { Value = value; Type = value?.GetType().FullName ?? string.Empty; }
}