mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-07-06 22:50:30 -04:00
Removed NioTSO client and server
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
This commit is contained in:
parent
f12ba1502b
commit
22191ce648
591 changed files with 53264 additions and 3362 deletions
36
server/FSO.Server.Api.Core/Models/EventCreateModel.cs
Executable file
36
server/FSO.Server.Api.Core/Models/EventCreateModel.cs
Executable file
|
@ -0,0 +1,36 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace FSO.Server.Api.Core.Models
|
||||
{
|
||||
public class EventCreateModel
|
||||
{
|
||||
public string title;
|
||||
public string description;
|
||||
public DateTime start_day;
|
||||
public DateTime end_day;
|
||||
public string type;
|
||||
public int value;
|
||||
public int value2;
|
||||
public string mail_subject;
|
||||
public string mail_message;
|
||||
public int mail_sender;
|
||||
public string mail_sender_name;
|
||||
}
|
||||
|
||||
public class PresetCreateModel
|
||||
{
|
||||
public string name;
|
||||
public string description;
|
||||
public int flags;
|
||||
public List<PresetItemModel> items;
|
||||
}
|
||||
|
||||
public class PresetItemModel
|
||||
{
|
||||
public string tuning_type;
|
||||
public int tuning_table;
|
||||
public int tuning_index;
|
||||
public float value;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue