Files
EveCalc/EveCalc.Shared/ObjectModel/Blueprint.cs
2021-01-30 22:46:48 +01:00

26 lines
799 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EveCalc.Shared.ObjectModel
{
public class Blueprint : ESI.NET.Models.Corporation.Blueprint
{
public string TypeName { get; set; }
public Blueprint(ESI.NET.Models.Corporation.Blueprint blueprint) : base()
{
this.ItemId = blueprint.ItemId;
this.LocationFlag = blueprint.LocationFlag;
this.LocationId = blueprint.LocationId;
this.MaterialEfficiency = blueprint.MaterialEfficiency;
this.Quantity = blueprint.Quantity;
this.Runs = blueprint.Runs;
this.TimeEfficiency = blueprint.TimeEfficiency;
this.TypeId = blueprint.TypeId;
}
}
}