LootBoxGenerator/LootBoxSimulator/Models/DAO/ItemDao.cs
2024-12-05 14:29:52 +03:00

11 lines
318 B
C#

namespace LootBoxSimulator.Models.DAO;
public class ItemDao
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Url { get; set; }
public virtual CategoryDao? Category { get; set; }
public virtual RateDao? Rate { get; set; }
}