Remove warnings

This commit is contained in:
Lennart Kampshoff
2019-12-21 13:49:33 +01:00
parent b4f4bb4622
commit c5f72c2ce5
53 changed files with 158 additions and 298 deletions

View File

@@ -1,7 +1,6 @@
using ReallifeGamemode.Database.Entities;
using ReallifeGamemode.Database.Models;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using ReallifeGamemode.Database.Models;
/**
* @overview Life of German Reallife - Entities FactionVehicles (FactionVehicle.cs)
@@ -12,7 +11,7 @@ using System.Linq;
namespace ReallifeGamemode.Database.Entities
{
[Table("FactionVehicles")]
public class FactionVehicle : ServerVehicle
public partial class FactionVehicle : ServerVehicle
{
[ForeignKey("Faction")]
public int? FactionId { get; set; }