init efcore

This commit is contained in:
bob
2026-05-29 12:21:42 -05:00
commit 3d3a5c2a5e
28 changed files with 2071 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace BlueLaminate.EFCore.Entities;
public class PriceHistory
{
public int Id { get; set; }
public int SkinId { get; set; }
public Skin Skin { get; set; } = null!;
public int ConditionId { get; set; }
public SkinCondition Condition { get; set; } = null!;
public decimal Price { get; set; }
public string Currency { get; set; } = null!;
public DateTimeOffset RecordedAt { get; set; }
public string Source { get; set; } = null!;
}