rectoring
This commit is contained in:
parent
628fab2146
commit
1ae0ee5a8a
16 changed files with 135 additions and 62 deletions
17
Sledgemapper.Api/Models/Session.cs
Normal file
17
Sledgemapper.Api/Models/Session.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Sledgemapper.Api.Models
|
||||
{
|
||||
public class Session
|
||||
{
|
||||
[Key]
|
||||
public int SessionId { get; set; }
|
||||
|
||||
[Required]
|
||||
public string SessionName{get;set;}
|
||||
|
||||
[Required]
|
||||
public int OwnerUserId { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue