namespace Nop.Core.Domain.Common; /// /// Represents a generic attribute /// public partial class GenericAttribute : BaseEntity { /// /// Gets or sets the entity identifier /// public int EntityId { get; set; } /// /// Gets or sets the key group /// public string KeyGroup { get; set; } /// /// Gets or sets the key /// public string Key { get; set; } /// /// Gets or sets the value /// public string Value { get; set; } /// /// Gets or sets the store identifier /// public int StoreId { get; set; } /// /// Gets or sets the created or updated date /// public DateTime? CreatedOrUpdatedDateUTC { get; set; } }