Files
motovaultpro/Models/Supply/SupplyAvailability.cs
Eric Gullickson f7eca4bad5 first commit
2025-07-15 20:34:05 -05:00

12 lines
354 B
C#

namespace MotoVaultPro.Models
{
public class SupplyAvailability
{
public bool Missing { get; set; }
public string Description { get; set; } = string.Empty;
public decimal Required { get; set; }
public decimal InStock { get; set; }
public bool Insufficient { get { return Required > InStock; } }
}
}