db and auth refactoring
This commit is contained in:
parent
0e1c16ab91
commit
aa472f9e29
45 changed files with 2182 additions and 697 deletions
7
Sledgemapper.Api/Core/Entities/BaseEntity.cs
Normal file
7
Sledgemapper.Api/Core/Entities/BaseEntity.cs
Normal file
|
@ -0,0 +1,7 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
public abstract class BaseEntity
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue