Files
EstusShots-Net/EstusShots.Server/Models/Enemy.cs
2020-03-07 11:29:00 +01:00

19 lines
446 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace EstusShots.Server.Models
{
public class Enemy
{
public Guid EnemyId { get; set; }
[MaxLength(50)] public string Name { get; set; } = default!;
public bool Boss { get; set; }
public bool Defeated { get; set; }
public ICollection<SeasonEnemies> SeasonEnemies { get; set; } = default!;
}
}