Files
EstusShots-Net/EstusShots.Shared/Dto/Enemy.cs
2020-03-12 22:09:45 +01:00

18 lines
338 B
C#

using System;
using System.Collections.Generic;
namespace EstusShots.Shared.Dto
{
public class Enemy
{
public Guid EnemyId { get; set; }
public string Name { get; set; }
public bool Boss { get; set; }
public bool Defeated { get; set; }
public List<Season> Seasons { get; set; }
}
}