Apistry.PropertyDocumentation.PropertyDocumentation C# (CSharp) Method

PropertyDocumentation() public method

public PropertyDocumentation ( String name, String type, String description ) : System
name String
type String
description String
return System
        public PropertyDocumentation(String name, String type, String description)
        {
            _Name = name;
            _Type = type;
            _Description = description;
        }
PropertyDocumentation