Nop.Core_4.7/Plugins/Nop.Plugin.Misc.Zettle/Models/SyncRecordModel.cs

27 lines
569 B
C#

using Nop.Web.Framework.Models;
namespace Nop.Plugin.Misc.Zettle.Models;
/// <summary>
/// Represents a synchronization record model
/// </summary>
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
}