first campaing bits
This commit is contained in:
parent
3ca5db1f47
commit
dcc59f7b69
58 changed files with 129 additions and 2522 deletions
18
Sledgemapper.Api/Models/Map.cs
Normal file
18
Sledgemapper.Api/Models/Map.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Sledgemapper.Api.Models
|
||||
{
|
||||
public class Map
|
||||
{
|
||||
[Key]
|
||||
public int MapId { get; set; }
|
||||
|
||||
[Required]
|
||||
public string MapName { get; set; }
|
||||
|
||||
|
||||
[Required]
|
||||
public int CampaignId { get; set; }
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue