Add trace of primitives and material
This commit is contained in:
13
StructureHelperCommon/Models/Loggers/ITraceEntityFactory.cs
Normal file
13
StructureHelperCommon/Models/Loggers/ITraceEntityFactory.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using StructureHelperCommon.Models;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace StructureHelperCommon.Models
|
||||
{
|
||||
public interface ITraceEntityFactory<T> where T : class
|
||||
{
|
||||
IEnumerable<T>? Collection { get; set; }
|
||||
int Priority { get; set; }
|
||||
|
||||
List<ITraceLoggerEntry> GetTraceEntries();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user