Shop System [Clothes] base

This commit is contained in:
Lukas Moungos
2020-01-26 14:55:24 +01:00
committed by Lukas Moungos
parent 461b9aa4cb
commit 834c5cb22d
30 changed files with 102924 additions and 0 deletions

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