LANCommander/LANCommander.Server/Models/ScriptEditorOptions.cs
Pat Hartl 20731f355a Fix certain taxonomies (tag, genre, platform) being removed from game on save
Fixes the action, custom field, multiplayer mode, and save path editors from clearing out taxonomies when saving. Also passes the Game/Server/Redistributable ID as a cascading parameter.
2025-12-08 00:51:32 -06:00

13 lines
372 B
C#

using LANCommander.SDK.Enums;
namespace LANCommander.Server.Models
{
public class ScriptEditorOptions
{
public Guid ScriptId { get; set; }
public Guid? GameId { get; set; }
public Guid? RedistributableId { get; set; }
public Guid? ServerId { get; set; }
public IEnumerable<ScriptType> AllowedTypes { get; set; }
}
}