21 lines
478 B
C#
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; }
|
|
|
|
}
|
|
}
|