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,3 +1,4 @@
using System;
using System.Collections.Generic;
using Microsoft.EntityFrameworkCore;
using Sledgemapper.Entities;
@ -7,7 +8,7 @@ namespace Sledgemapper.Api.Core.Entities
[Index(nameof(CampaignName), nameof(OwnerId), IsUnique = true)]
public class Campaign
{
public int CampaignId { get; set; }
public Guid CampaignId { get; set; }
public string CampaignName { get; set; }
public string OwnerId { get; set; }