wiring up new auth endpoint

This commit is contained in:
Michele 2021-05-28 23:14:40 +01:00
parent b6999cef0a
commit a13fb49942
17 changed files with 850 additions and 37 deletions

View file

@ -1,10 +1,12 @@
using System;
using System.Collections.Generic;
using Sledgemapper.Shared.Entities;
public class Campaign
namespace Sledgemapper.Shared.Entities
{
public Guid Id {get;set;}
public string Name { get; set; }
public List<Map> Maps {get;set;}
public class Campaign
{
public Guid Id { get; set; }
public string Name { get; set; }
public List<Map> Maps { get; set; }
}
}

View file

@ -13,6 +13,9 @@ namespace Sledgemapper.Shared.Entities
[Required]
public string Username { get; set; }
[Required]
public string Email { get; set; }
[Required]
public string Password { get; set; }
[Required]