20 lines
470 B
C#
20 lines
470 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using UbloxSC20.Model;
|
|
|
|
namespace UbloxSC20.Data
|
|
{
|
|
public class UbloxSC20Context : DbContext
|
|
{
|
|
public UbloxSC20Context (DbContextOptions<UbloxSC20Context> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
|
|
public DbSet<UbloxSC20.Model.NavigationModel> NavigationModel { get; set; } = default!;
|
|
}
|
|
}
|