using Nop.Core; namespace Nop.Plugin.Tax.Avalara.Domain; /// /// Represents a item classification record /// public class ItemClassification : BaseEntity { /// /// Gets or sets the product identifier /// public int ProductId { get; set; } /// /// Gets or sets the HS classification request identifier /// public string HSClassificationRequestId { get; set; } /// /// Gets or sets the country identifier /// public int CountryId { get; set; } /// /// Gets or sets the HS (harmonized system) code /// public string HSCode { get; set; } /// /// Gets or sets the date and time of updation /// public DateTime UpdatedOnUtc { get; set; } }