LANCommander/LANCommander.Server/Models/ScriptEditorOptions.cs
Pat Hartl 120e14d40c Add Tools section to server app
Allows users to upload additional tools and tie them to games. This can be useful for software like map editors, trainers, etc.
2026-02-08 02:24:53 -06:00

14 lines
414 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 Guid? ToolId { get; set; }
public IEnumerable<ScriptType> AllowedTypes { get; set; }
}
}