ShiftOS_TheReturn/ShiftOS.Objects/Hacking/Loot.cs
2017-08-02 10:23:13 -04:00

30 lines
599 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShiftOS.Objects
{
public class Loot
{
public string FriendlyName { get; set; }
public string LootName { get; set; }
public int Rarity { get; set; }
public string PointTo { get; set; }
public string ID
{
get
{
return PointTo;
}
}
public override string ToString()
{
return $"{FriendlyName} ({LootName})";
}
}
}