using System.Collections.Generic; using CTA.Rules.Models; namespace CTA.Rules.Analyzer; public interface IRulesAnalysis { /// /// Runs the Rules Analysis /// /// ProjectActions Analyze(); ProjectActions AnalyzeFiles(ProjectActions projectActions, List updatedFiles); }