refactoring

This commit is contained in:
Paul Schneider 2018-07-16 02:36:44 +02:00
commit d796f553f4
20 changed files with 29 additions and 11 deletions

View file

@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
namespace Yavsc.Models.Messaging
namespace Yavsc.Abstract.Identity
{
public class ClientProviderInfo
{

View file

@ -1,4 +1,4 @@
namespace Yavsc
namespace Yavsc.Abstract.Identity
{
public interface IApplicationUser
{

View file

@ -1,4 +1,4 @@
namespace Yavsc
namespace Yavsc.Abstract.Identity.Security
{
public interface ICircleAuthorization

View file

@ -1,4 +1,4 @@
namespace Yavsc
namespace Yavsc.Abstract.Identity.Security
{
public interface ICircleAuthorized
{

View file

@ -1,6 +1,7 @@
using System;
namespace Yavsc.Abstract.Identity
{
using System;
public class TokenInfo
{
public string AccessToken { get; set; }

View file

@ -1,4 +1,4 @@
namespace Yavsc.Models.Auth
namespace Yavsc.Abstract.Identity
{
public class UserInfo {

View file

@ -1,4 +1,6 @@
namespace Yavsc.Interfaces
using Yavsc.Abstract.Identity;
namespace Yavsc.Interfaces
{
public interface ICircleMember: IIdentified<long>
{

View file

@ -1,4 +1,6 @@

using Yavsc.Abstract.Identity;
namespace Yavsc.Interfaces
{
public interface IGCMDeclaration

View file

@ -1,5 +1,5 @@
using System;
using Yavsc.Models.Messaging;
using Yavsc.Abstract.Identity;
namespace Yavsc.Interfaces
{

View file

@ -1,4 +1,5 @@
using System;
using Yavsc.Abstract.Identity;
namespace Yavsc.Models
{

View file

@ -1,5 +1,6 @@
namespace Yavsc
{
using Abstract.Identity;
public interface IContact
{
IApplicationUser Owner { get; set; }

View file

@ -17,6 +17,7 @@
//
using System;
using Yavsc.Abstract.Identity;
namespace Yavsc
{