Shop System [Clothes] base
This commit is contained in:
committed by
Lukas Moungos
parent
461b9aa4cb
commit
834c5cb22d
20
ReallifeGamemode.Database/Entities/ShopClothe.cs
Normal file
20
ReallifeGamemode.Database/Entities/ShopClothe.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ReallifeGamemode.Database.Entities
|
||||
{
|
||||
public partial class ShopClothe
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
public int ClotheId { get; set; }
|
||||
public bool Gender { get; set; }
|
||||
public string TypeId { get; set; }
|
||||
public int ComponentId { get; set; }
|
||||
public int Category { get; set; }
|
||||
public int Price { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user