Files
EstusShots-Net/EstusShots.Shared/Dto/Enemy.cs
2020-03-07 10:57:15 +01:00

20 lines
387 B
C#

using System;
using System.ComponentModel.DataAnnotations;
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 Guid? SeasonId { get; set; }
public Season Season { get; set; }
}
}