15 lines
293 B
C#
15 lines
293 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Nevyn.Models
|
|
{
|
|
public class MoneyContext : DbContext
|
|
{
|
|
public MoneyContext(DbContextOptions<MoneyContext> options) : base(options)
|
|
{
|
|
|
|
}
|
|
|
|
public DbSet<Wallet> UpdateWallet { get; set; } = null!;
|
|
}
|
|
}
|