Add trace crack result

This commit is contained in:
Evgeny Redikultsev
2024-12-30 15:42:57 +05:00
parent ba70e0d214
commit 65253a907b
42 changed files with 685 additions and 125 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections.Generic;
//Copyright (c) 2025 Redikultsev Evgeny, Ekaterinburg, Russia
//All rights reserved.
namespace StructureHelperCommon.Models
{
public interface ITraceCollectionLogic<T> : ITraceEntityLogic
{
IEnumerable<T>? Collection { get; set; }
int Priority { get; set; }
}
}