summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Generic/FieldInformation.cs
blob: 21d9edb5e0e4ccaa3fe2f18d14bed35b1b77acd2 (plain)
1
2
3
4
5
6
7
8
9
10
namespace Gestor.Model.Domain.Generic;

public class FieldInformation
{
	public string Name { get; set; }

	public string Description { get; set; }

	public dynamic Value { get; set; }
}