mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-13 03:34:55 +08:00
15 lines
386 B
C#
15 lines
386 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BetterLyrics.WinUI3.Models.Db
|
|
{
|
|
public partial class FilesIndexDbContext : DbContext
|
|
{
|
|
public FilesIndexDbContext(DbContextOptions<FilesIndexDbContext> options) : base(options) { }
|
|
|
|
public DbSet<FilesIndexItem> FilesIndex { get; set; }
|
|
}
|
|
}
|