Files
SVSimServer/SVSim.Database/Models/CollectionInfo.cs
2024-09-12 00:35:31 -04:00

10 lines
190 B
C#

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