2024-08-12 00:15:16 -05:00
|
|
|
|
using LANCommander.SDK.Enums;
|
2023-11-28 20:48:03 -06:00
|
|
|
|
|
2024-08-04 18:44:33 -05:00
|
|
|
|
namespace LANCommander.Server.Models
|
2023-11-28 20:48:03 -06:00
|
|
|
|
{
|
|
|
|
|
|
public class ScriptEditorOptions
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid ScriptId { get; set; }
|
2025-12-08 00:51:32 -06:00
|
|
|
|
public Guid? GameId { get; set; }
|
|
|
|
|
|
public Guid? RedistributableId { get; set; }
|
|
|
|
|
|
public Guid? ServerId { get; set; }
|
2023-11-28 20:48:03 -06:00
|
|
|
|
public IEnumerable<ScriptType> AllowedTypes { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|