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; } }