mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-06-28 13:34:09 +08:00
14 lines
358 B
C#
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; }
|
|
}
|
|
}
|