Webiant Logo Webiant Logo
  1. No results found.

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

TaxTransactionLogSearchModel.cs

using System.ComponentModel.DataAnnotations;
using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;

namespace Nop.Plugin.Tax.Avalara.Models.Log;

/// 
/// Represents a tax transaction log search model
/// 
public record TaxTransactionLogSearchModel : BaseSearchModel
{
    #region Properties

    [NopResourceDisplayName("Plugins.Tax.Avalara.Log.Search.CreatedFrom")]
    [UIHint("DateNullable")]
    public DateTime? CreatedFrom { get; set; }

    [NopResourceDisplayName("Plugins.Tax.Avalara.Log.Search.CreatedTo")]
    [UIHint("DateNullable")]
    public DateTime? CreatedTo { get; set; }

    #endregion
}