This commit is contained in:
Paul Schneider 2021-08-15 19:09:01 +01:00
commit 504f431937
67 changed files with 239 additions and 96 deletions

View file

@ -4,7 +4,7 @@
using System;
namespace isn.Data
namespace isnd.Data
{
public class AccountOptions
{

View file

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
namespace isn.Data
namespace isnd.Data
{
public class ExternalProvider
{

View file

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
namespace isn.Data
namespace isnd.Data
{
public class LoggedOutViewModel
{

View file

@ -4,7 +4,7 @@
using System.ComponentModel.DataAnnotations;
namespace isn.Data
namespace isnd.Data
{
public class LoginInputModel
{

View file

@ -6,7 +6,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace isn.Data
namespace isnd.Data
{
public class LoginViewModel : LoginInputModel
{

View file

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
namespace isn.Data
namespace isnd.Data
{
public class LogoutInputModel
{

View file

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
namespace isn.Data
namespace isnd.Data
{
public class LogoutViewModel : LogoutInputModel
{

View file

@ -3,7 +3,7 @@
namespace isn.Data
namespace isnd.Data
{
public class RedirectViewModel
{

View file

@ -4,7 +4,7 @@ using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace isn.Data
namespace isnd.Data
{
public class RegisterViewModel
{

View file

@ -2,7 +2,7 @@ using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace isn.Data.ApiKeys
namespace isnd.Data.ApiKeys
{
public class ApiKey
{

View file

@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
namespace isn.Data.ApiKeys
namespace isnd.Data.ApiKeys
{
public class ApiKeyViewModel
{

View file

@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
namespace isn.Data.ApiKeys
namespace isnd.Data.ApiKeys
{
public class CreateModel
{

View file

@ -1,4 +1,4 @@
namespace isn.Data.ApiKeys
namespace isnd.Data.ApiKeys
{
public class DeleteModel
{

View file

@ -1,4 +1,4 @@
namespace isn.Data.ApiKeys
namespace isnd.Data.ApiKeys
{
public class DetailModel : ApiKeyViewModel
{

View file

@ -1,4 +1,4 @@
namespace isn.Data.ApiKeys
namespace isnd.Data.ApiKeys
{
public class EditModel
{

View file

@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace isn.Data.ApiKeys
namespace isnd.Data.ApiKeys
{
public class IndexModel
{

View file

@ -4,10 +4,10 @@ using System.Text;
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using isn.Data;
using isn.Data.ApiKeys;
using isnd.Data;
using isnd.Data.ApiKeys;
namespace isn.Data
namespace isnd.Data
{
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{

View file

@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Identity;
namespace isn.Data
namespace isnd.Data
{
// Add profile data for application users by adding properties to the ApplicationUser class
public class ApplicationUser : IdentityUser

View file

@ -1,6 +1,6 @@
using System;
namespace isn.Data
namespace isnd.Data
{
public class NewReleaseInfo
{

View file

@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Newtonsoft.Json;
namespace isn.Data
namespace isnd.Data
{
public class Package
{

View file

@ -2,7 +2,7 @@ using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Newtonsoft.Json;
namespace isn.Data
namespace isnd.Data
{
public class PackageVersion
{

View file

@ -1,4 +1,4 @@
namespace isn.Data.Roles
namespace isnd.Data.Roles
{
public class AdminStartupList
{