Add File-Overview comments, move out of place comments

This commit is contained in:
VegaZ
2018-09-19 15:57:10 +02:00
parent 5a816c4201
commit d548a612ff
17 changed files with 101 additions and 62 deletions

View File

@@ -1,15 +1,15 @@
/**
* @overview Life of German Reallife - DatabaseContext.cs
* @author VegaZ
* @copyright (c) 2008 - 2018 Life of German
*/
using System;
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata;
/**
* @overview Life of German Reallife - DatabaseContext.cs
* @author VegaZ
* @copyright (c) 2008 - 2018 Life of German
*/
namespace reallife_gamemode.Model
{
public partial class DatabaseContext : DbContext
@@ -35,6 +35,5 @@ namespace reallife_gamemode.Model
}
public DbSet<Server.Entities.User> Users { get; set; }
public DbSet<Server.Entities.Character> Characters { get; set; }
}
}