LANCommander/LANCommander.Server/Models/ScriptEditorOptions.cs

16 lines
466 B
C#
Raw Permalink Normal View History

2024-08-12 00:15:16 -05:00
using LANCommander.SDK.Enums;
2024-08-04 18:44:33 -05:00
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 ScriptType? ScriptType { get; set; }
public IEnumerable<ScriptType> AllowedTypes { get; set; }
}
}