Add DbContext, Models

This commit is contained in:
VegaZ
2018-09-17 18:57:49 +02:00
parent 0b5a428dac
commit 7cafc4d66b
7 changed files with 134 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
namespace reallife_gamemode.Model
{
public partial class Efmigrationshistory
{
public string MigrationId { get; set; }
public string ProductVersion { get; set; }
}
}