refactoring

This commit is contained in:
2018-07-21 16:15:54 +02:00
parent a531a46fb0
commit 11b76834bc
5 changed files with 24 additions and 9 deletions

View File

@ -20,7 +20,7 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
namespace Yavsc.Models.Google
namespace Yavsc.Abstract.Identity
{
/// <summary>
/// Auth token, as they are received.

View File

@ -0,0 +1,9 @@
namespace Yavsc.Abstract.Identity {
public class Me : UserInfo
{
public AuthToken Token {
get;
set;
}
}
}