using Microsoft.EntityFrameworkCore; namespace barkmanapi; public class BarkContext(DbContextOptions options) : DbContext(options) { public DbSet Inventory { get; set; } } public class InventoryItems { public int Id {get; set;} public string Name { get; set; } public string Brand { get; set; } public string? SerialNumber { get; set; } public string? Status { get; set; } public float? RentalPrice { get; set; } public float? ReplacementCost { get; set; } public string? Notes { get; set; } }