Added a way to login and register and a tools project

This commit is contained in:
2019-05-06 13:12:35 -04:00
parent 8e4e504fd8
commit a4cf928fe0
15 changed files with 231 additions and 31 deletions

View File

@@ -0,0 +1,14 @@
using BrightGlimmer.Domain.Auth;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BrightGlimmer.Auth.Request
{
public class RegisterUserRequest
{
public User User { get; set; }
public string Password { get; set; }
}
}