using Infrastructure.Domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Application.Domain { public class Statistic:BaseEntity { public string Key { get; set; } public string Value { get; set; } } }