Add File-Overview comments, move out of place comments

This commit is contained in:
VegaZ
2018-09-19 15:57:10 +02:00
parent 501f92af73
commit 7ced0b1b40
17 changed files with 101 additions and 62 deletions

View File

@@ -1,16 +0,0 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace reallife_gamemode.Server.Entities
{
public class Character
{
[Key]
public int Id { get; set; }
public int UserId { get; set; }
public string Name { get; set; }
public byte Gender { get; set; }
}
}