LANCommander/LANCommander.Server/Models/ScriptEditorOptions.cs
2026-06-27 11:03:34 -05:00

16 lines
515 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? GameVersionId { get; set; }
public Guid? RedistributableId { get; set; }
public Guid? ServerId { get; set; }
public Guid? ToolId { get; set; }
public ScriptType? ScriptType { get; set; }
public IEnumerable<ScriptType> AllowedTypes { get; set; }
}
}