Files
reallife-gamemode/ReallifeGamemode.Database/Entities/ClothCombination.cs
Lennart Kampshoff c5f72c2ce5 Remove warnings
2019-12-21 13:49:33 +01:00

21 lines
485 B
C#

using System.ComponentModel.DataAnnotations;
/**
* @overview Life of German Reallife - Entities MaleCombination (MaleCombination.cs)
* @author VegaZ
* @copyright (c) 2008 - 2018 Life of German
*/
namespace ReallifeGamemode.Database.Entities
{
public partial class ClothCombination
{
[Key]
public int Id { get; set; }
public bool Gender { get; set; }
public int Top { get; set; }
public int Torso { get; set; }
public int Undershirt { get; set; }
}
}