mirror of
https://gitee.com/csharpui/CPF.git
synced 2026-06-26 22:33:09 +08:00
初始化
This commit is contained in:
13
ConsoleApp1/InvokeST/ConvertMap/SearchResult.cs
Normal file
13
ConsoleApp1/InvokeST/ConvertMap/SearchResult.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user