Files
SVSimServer/SVSim.Database/Models/CardCollectionInfo.cs
2025-05-18 02:27:17 -04:00

10 lines
194 B
C#

using Microsoft.EntityFrameworkCore;
namespace SVSim.Database.Models;
[Owned]
public class CardCollectionInfo
{
public int CraftCost { get; set; }
public int DustReward { get; set; }
}