using System.Collections.Generic; namespace Amazon.Lambda.Annotations.SourceGenerator.Models { public class AnnotationReport { /// /// Collection of annotated Lambda functions detected in the project /// public IList LambdaFunctions { get; } = new List(); /// /// Path to the CloudFormation template for the Lambda project /// public string CloudFormationTemplatePath{ get; set; } /// /// Path to the directory containing the csproj file for the Lambda project /// public string ProjectRootDirectory { get; set; } /// /// Whether the flag to suppress telemetry about Lambda Annotations /// projects is set to true in the Lambda project csproj /// public bool IsTelemetrySuppressed { get; set; } } }