Mango.Nop.Plugins/Nop.Plugin.Misc.AIPlugin/Areas/Admin/Models/PreorderAvailabilityRow.cs

12 lines
477 B
C#

namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Models;
public class PreorderAvailabilityRow
{
public int ProductId { get; set; }
public string ProductName { get; set; } = string.Empty;
public string? Sku { get; set; }
public string? WindowStart { get; set; } // ISO date string "yyyy-MM-dd" or null
public string? WindowEnd { get; set; } // ISO date string "yyyy-MM-dd" or null
public bool IsAvailableToday { get; set; }
}