using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GreenTree.Nachtragsmanagement.Core.Domain.Config { public class ConfigItem : BaseEntity { /// /// Name /// public string Name { get; set; } /// /// Fullname of the datatype /// public string TypeFullName { get; set; } /// /// Value /// public string Value { get; set; } /// /// Description /// public string Description { get; set; } } }