Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Plugin.Misc.Zettle.Models;
///
/// Represents a synchronization record model
///
public record SyncRecordModel : BaseNopEntityModel
{
#region Properties
public bool Active { get; set; }
public int ProductId { get; set; }
public string ProductName { get; set; }
public bool PriceSyncEnabled { get; set; }
public bool ImageSyncEnabled { get; set; }
public bool InventoryTrackingEnabled { get; set; }
public DateTime? UpdatedDate { get; set; }
#endregion
}