Implement EnemiesService.cs
This commit is contained in:
13
EstusShots.Server/Models/SeasonEnemies.cs
Normal file
13
EstusShots.Server/Models/SeasonEnemies.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace EstusShots.Server.Models
|
||||
{
|
||||
public class SeasonEnemies
|
||||
{
|
||||
public Guid SeasonId { get; set; } = default!;
|
||||
public Season Season { get; set; } = default!;
|
||||
|
||||
public Guid EnemyId { get; set; } = default!;
|
||||
public Enemy Enemy { get; set; } = default!;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user