Migrating MB tests and changing required accessibility lvls

This commit is contained in:
Elitsa Marinovska
2020-07-13 21:49:09 +02:00
parent 07c0402d2b
commit d7b818001e
7 changed files with 5 additions and 13 deletions

View File

@@ -16,7 +16,7 @@ namespace Umbraco.ModelsBuilder.Embedded.Building
/// <summary>
/// Provides a base class for all builders.
/// </summary>
internal abstract class Builder
public abstract class Builder
{
private readonly IList<TypeModel> _typeModels;
@@ -59,7 +59,7 @@ namespace Umbraco.ModelsBuilder.Embedded.Building
/// Gets the list of all models.
/// </summary>
/// <remarks>Includes those that are ignored.</remarks>
internal IList<TypeModel> TypeModels => _typeModels;
public IList<TypeModel> TypeModels => _typeModels;
/// <summary>
/// Initializes a new instance of the <see cref="Builder"/> class with a list of models to generate,
@@ -196,7 +196,7 @@ namespace Umbraco.ModelsBuilder.Embedded.Building
return true;
}
internal string ModelsNamespaceForTests;
public string ModelsNamespaceForTests;
public string GetModelsNamespace()
{