LANCommander/LANCommander.Server/Models/ScriptEditorOptions.cs
2024-08-12 00:15:16 -05:00

14 lines
413 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 ArchiveId { get; set; }
public IEnumerable<ScriptType> AllowedTypes { get; set; }
}
}