wiring up new auth endpoint
This commit is contained in:
parent
b6999cef0a
commit
a13fb49942
17 changed files with 850 additions and 37 deletions
|
@ -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; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue