refactor: moved type container one directory up
This commit is contained in:
@@ -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; }
|
||||
}
|
Reference in New Issue
Block a user