Исправление названия

This commit is contained in:
dasha 2023-04-01 17:49:20 +04:00 committed by Николай
parent ecc4cfcfac
commit fd249f5edb

View File

@ -21,7 +21,7 @@ namespace HardwareShopDatabaseImplement.Models.Storekeeper
public int UserId { get; set; }
[ForeignKey("ComponentId")]
public virtual List<GoodComponent> SushiComponents { get; set; } = new();
public virtual List<GoodComponent> GoodComponents { get; set; } = new();
public virtual User User { get; set; } = null!;