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