using System.Collections.Generic; namespace Amazon.Lambda.Annotations.SourceGenerator.Models { /// /// Represents generated method model used for generating the code from the template. /// public class GeneratedMethodModel { /// /// Gets or sets type of response returned by the generated Lambda function. /// public TypeModel ReturnType { get; set; } /// /// Gets or sets type of parameters accepted by the generated Lambda function. /// public IList Parameters { get; set; } /// /// Gets or sets list of namespaces required to facilitate generated statements. /// public IList Usings { get; set; } /// /// Gets or sets containing type of the generated Lambda function. /// public TypeModel ContainingType { get; set; } } }