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; }
|
|
|
|
}
|