2023-01-15 04:29:47 -06:00
|
|
|
|
using LANCommander.SDK.Enums;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.SDK.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Script : BaseModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public ScriptType Type { get; set; }
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
public bool RequiresAdmin { get; set; }
|
2026-07-08 02:15:54 -05:00
|
|
|
|
public RuntimePlatform Platforms { get; set; }
|
2023-01-15 04:29:47 -06:00
|
|
|
|
public string Contents { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|