init efcore
This commit is contained in:
10
BlueLaminate/BlueLaminate.EFCore/Entities/TradeItem.cs
Normal file
10
BlueLaminate/BlueLaminate.EFCore/Entities/TradeItem.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace BlueLaminate.EFCore.Entities;
|
||||
|
||||
public class TradeItem
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int TradeId { get; set; }
|
||||
public Trade Trade { get; set; } = null!;
|
||||
public int InventoryItemId { get; set; }
|
||||
public InventoryItem InventoryItem { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user