LootBoxGenerator/LootBoxSimulator/Models/DAO/ItemDao.cs

11 lines
318 B
C#
Raw Permalink Normal View History

2024-12-04 10:43:39 +00:00
namespace LootBoxSimulator.Models.DAO;
public class ItemDao
{
public int Id { get; set; }
public string Name { get; set; }
2024-12-05 11:29:52 +00:00
public string Description { get; set; }
2024-12-04 10:43:39 +00:00
public string Url { get; set; }
public virtual CategoryDao? Category { get; set; }
public virtual RateDao? Rate { get; set; }
}