talkspace templates added

This commit is contained in:
Norm Rasmussen
2022-06-17 14:14:24 -04:00
parent f493b37b1e
commit 59aaf84c10
328 changed files with 15105 additions and 27 deletions

View File

@ -0,0 +1,8 @@
namespace Account_SQLite.Data
{
public class Account
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
}
}

View File

@ -0,0 +1,14 @@
using Microsoft.EntityFrameworkCore;
namespace Account_SQLite.Data
{
public class AccountContext : DbContext
{
public AccountContext(DbContextOptions<AccountContext> opts): base(opts)
{
}
public DbSet<Account> Accounts { get; set; } = null!;
}
}