Elisa/Elisa.Common/Messages/Theater.cs

26 lines
604 B
C#

using Elisa.Common.Models;
namespace Elisa.Common.Messages;
public class TheaterDataRequest
{
public int theater_event_id;
}
public class TheaterDataResponse
{
public List<TheaterAreaType2Log> theater_area_type2_log;
public List<TheaterConstructionInfo> theater_construction_info;
public TheaterEventLog theater_event_log;
public List<TheaterIncidentInfo> theater_incident_info;
public List<TheaterInfo> theater_info;
public int theater_progress_lowest;
}
public class TheaterVoteRequest
{
public int incident_id;
public int num;
public int selection_id;
}