15 lines
287 B
C#
15 lines
287 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using ReallifeGamemode.Database.Entities;
|
|
|
|
namespace ReallifeGamemode.Server.Shop.Clothing
|
|
{
|
|
public class Clothe : ShopClothe
|
|
{
|
|
public string clothe;
|
|
public int undershirtId;
|
|
public int torsoId;
|
|
}
|
|
}
|