using Nop.Core; namespace Nop.Plugin.Tax.Avalara.Domain; /// /// Represents a tax transaction log record /// public class TaxTransactionLog : BaseEntity { /// /// Gets or sets the response status code /// public int StatusCode { get; set; } /// /// Gets or sets the requested URL /// public string Url { get; set; } /// /// Gets or sets the request message /// public string RequestMessage { get; set; } /// /// Gets or sets the response message /// public string ResponseMessage { get; set; } /// /// Gets or sets the customer identifier /// public int CustomerId { get; set; } /// /// Gets or sets the date and time of creation /// public DateTime CreatedDateUtc { get; set; } }