ShiftOS_TheReturn/ShiftOS.Objects/Hacking/Loot.cs

31 lines
599 B
C#
Raw Normal View History

2017-07-28 21:26:14 +00:00
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
{
2017-08-02 14:23:13 +00:00
return PointTo;
2017-07-28 21:26:14 +00:00
}
}
public override string ToString()
{
return $"{FriendlyName} ({LootName})";
}
}
}