From c287fbde2574f405d97e6a659f633cf38532bac1 Mon Sep 17 00:00:00 2001 From: VegaZ Date: Thu, 22 Nov 2018 20:11:04 +0100 Subject: [PATCH] Add ClothCombination --- Server/Entities/ClothCombination.cs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Server/Entities/ClothCombination.cs diff --git a/Server/Entities/ClothCombination.cs b/Server/Entities/ClothCombination.cs new file mode 100644 index 00000000..bbf9223f --- /dev/null +++ b/Server/Entities/ClothCombination.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +using System.Numerics; +using System.Text; + +/** +* @overview Life of German Reallife - Entities MaleCombination (MaleCombination.cs) +* @author VegaZ +* @copyright (c) 2008 - 2018 Life of German +*/ + +namespace reallife_gamemode.Server.Entities +{ + public 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; } + } +}