9 lines
161 B
C#
9 lines
161 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Engine.Serialization;
|
||
|
|
||
|
public class EntityDto
|
||
|
{
|
||
|
public Dictionary<string, object?> Fields { get; set; } = [];
|
||
|
}
|