Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ItemClassification.cs

using Nop.Core;

namespace Nop.Plugin.Tax.Avalara.Domain;

/// <summary>
/// Represents a item classification record
/// </summary>
public class ItemClassification : BaseEntity
{
    /// <summary>
    /// Gets or sets the product identifier
    /// </summary>
    public int ProductId { get; set; }

    /// <summary>
    /// Gets or sets the HS classification request identifier
    /// </summary>
    public string HSClassificationRequestId { get; set; }

    /// <summary>
    /// Gets or sets the country identifier
    /// </summary>
    public int CountryId { get; set; }

    /// <summary>
    /// Gets or sets the HS (harmonized system) code
    /// </summary>
    public string HSCode { get; set; }

    /// <summary>
    /// Gets or sets the date and time of updation
    /// </summary>
    public DateTime UpdatedOnUtc { get; set; }
}