private static void CommonSetup(EnumsGeneratorItem item)
        {
            var isCommon = item.EnumName == "DockerComposeCommon";

            item.FilenameMaker = new TemplateFilenameMaker("{0}\\_shell\\{1}\\_dockerCompose\\{2}");
            if (isCommon)
            {
                item.WithInterface <ICommandsPartsProvider>();
            }
            else
            {
                item.WithInterface <IDockerComposeOption>();
                var name = item.Tags["name"];
                item.AddCustomCreator(c =>
                {
                    var p = c.AddProperty("Name", "string")
                            .WithIsPropertyReadOnly()
                            .WithNoEmitField()
                            .WithOwnGetter(name.CsEncode());
                    p.OwnGetterIsExpression = true;
                });
            }

            item.AddCustomCreator(c =>
            {
                c.AddMethod("GetItems", c.GetTypeName(typeof(IEnumerable <string>)))
                .WithBody("return GetCodeItems();");
            });
        }