Files
filamentguard_server/fgs.database/Context/FilamentguardContext.cs
Bjarne Pedersen 589a8c477d API færdig
Der er lavet følgende på API:
Modtage tag
Fjernt tag
Log

Der er lavet database til samme
2026-07-19 22:00:58 +02:00

27 lines
735 B
C#

// <auto-generated> This file has been auto generated by EF Core Power Tools. </auto-generated>
#nullable disable
using System;
using System.Collections.Generic;
using Microsoft.EntityFrameworkCore;
using fgs.database.Models;
namespace fgs.database.Context;
public partial class FilamentguardContext : DbContext
{
public FilamentguardContext(DbContextOptions<FilamentguardContext> options)
: base(options)
{
}
public virtual DbSet<Log> Logs { get; set; }
public virtual DbSet<Tag> Tags { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
OnModelCreatingPartial(modelBuilder);
}
partial void OnModelCreatingPartial(ModelBuilder modelBuilder);
}