mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-23 10:12:16 +00:00
31 lines
724 B
C#
31 lines
724 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ShiftOS.Objects
|
|
{
|
|
public class Payload
|
|
{
|
|
public string FriendlyName { get; set; }
|
|
public string PayloadName { get; set; }
|
|
public int EffectiveAgainstFirewall { get; set; }
|
|
public SystemType EffectiveAgainstPort { get; set; }
|
|
public string Dependencies { get; set; }
|
|
|
|
public string ID
|
|
{
|
|
get
|
|
{
|
|
return PayloadName.ToLower().Replace(" ", "_");
|
|
}
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{FriendlyName} ({PayloadName})";
|
|
}
|
|
}
|
|
|
|
}
|