Friday, September 20, 2024 12:05:27 AM
> settings

Customize


Authenticate

> Arma.cs
/*
 * Bryan
 * Exile Server Manager
 * Command and Return classes used to transmit date within the DLL
 */

using System.Collections.Generic;

namespace esm
{
    public class ArmACommand
    {
        public string Function { get; set; }
        public List<string> Parameters { get; set; } = new List<string>();
    }

    public class ArmAReturn
    {
        public bool Response { get; set; } = false;
        public List<string> Returned { get; set; } = new List<string>();
    }
}
All opinions represented herein are my own
- © 2024 itsthedevman
- build 3c15a1b