2024-10-09 18:18:26 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace StarsAssistant.Model;
|
|
|
|
|
2024-10-19 18:05:12 +00:00
|
|
|
public class FleetSummaryByDestination
|
2024-10-09 18:18:26 +00:00
|
|
|
{
|
|
|
|
public string Destination { get; set; } = string.Empty;
|
|
|
|
public int TotalIronium { get; set; }
|
|
|
|
public int TotalBoranium { get; set; }
|
|
|
|
public int TotalGermanium { get; set; }
|
|
|
|
public int TotalColonists { get; set; }
|
|
|
|
|
|
|
|
public override string ToString() => $"To {Destination}: {TotalIronium}I/{TotalBoranium}B/{TotalGermanium}G/{TotalColonists}C";
|
|
|
|
}
|