I don't know what I'm doing anymore
This commit is contained in:
parent
ea9cc32534
commit
8fdee0cb67
17 changed files with 342 additions and 116 deletions
17
Sledgemapper.Api/Models/UserConnection.cs
Normal file
17
Sledgemapper.Api/Models/UserConnection.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using System.Data;
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Sledgemapper.Api.Models
|
||||
{
|
||||
public class UserConnection
|
||||
{
|
||||
[Key]
|
||||
public int UserConnectionId { get; set; }
|
||||
[Required]
|
||||
public int UserId { get; set; }
|
||||
|
||||
[Required]
|
||||
public string ConnectionId{get;set;}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue