Files
reallife-gamemode/ReallifeGamemode.Database/Entities/ShopClothe.cs
2020-01-30 21:37:56 +01:00

21 lines
478 B
C#

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