CPF/ConsoleApp1/InvokeST/ConvertMap/SearchResult.cs
2023-11-21 23:05:03 +08:00

14 lines
358 B
C#

using System;
using System.Collections.Generic;
namespace Raindrops.Shared.InvokeST.ConvertMap
{
public class SearchResult
{
public int Length => Items?.Length ?? 0;
public int ConsumptionWeight { get; set; }
public int LostWeight { get; set; }
public KeyValuePair<Type, ConvertItem>[] Items { get; set; }
}
}