You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
533 B
24 lines
533 B
namespace ooya.ga_api;
|
|
|
|
public class GameDto
|
|
{
|
|
/// <summary>
|
|
/// Текущая дата и время
|
|
/// </summary>
|
|
public DateTime Date { get; set; }
|
|
|
|
/// <summary>
|
|
/// Идентификатор игры
|
|
/// </summary>
|
|
public string Guid { get; set; }
|
|
|
|
/// <summary>
|
|
/// Количество очков
|
|
/// </summary>
|
|
public int Score { get; set; }
|
|
|
|
/// <summary>
|
|
/// Ведьмы раунда
|
|
/// </summary>
|
|
public IEnumerable<WitchDto> Witches { get; set; }
|
|
}
|