using System; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Generic { public class FieldInformation { public string Description { get; set; } public string Name { get; set; } public dynamic Value { get; set; } public FieldInformation() { } } }