using System.Collections.Generic; namespace RestEase.Implementation.Analysis { internal partial class MethodModel { public AttributeModel? RequestAttribute { get; set; } public AttributeModel? AllowAnyStatusCodeAttribute { get; set; } public AttributeModel? SerializationMethodsAttribute { get; set; } public List> HeaderAttributes { get; } = new List>(); public bool IsDisposeMethod { get; set; } public List Parameters { get; } = new List(); // Set by the ImplementationGenerator, not the TypeAnalyzer public bool IsExplicit { get; set; } } }