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