Skip to content

Commit

Permalink
Reverting model visibility back to public
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcampbell committed Apr 1, 2015
1 parent 7c8c7ad commit 3ccc2a5
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace PactNet.Configuration.Json.Converters
{
internal class LowercaseStringEnumConverter : StringEnumConverter
public class LowercaseStringEnumConverter : StringEnumConverter
{
public LowercaseStringEnumConverter()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace PactNet.Mocks.MockHttpService.Models
{
internal class ProviderServiceInteraction : Interaction
public class ProviderServiceInteraction : Interaction
{
[JsonProperty(PropertyName = "request")]
public ProviderServiceRequest Request { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace PactNet.Mocks.MockHttpService.Models
{
internal class ProviderServicePactFile : PactFile
public class ProviderServicePactFile : PactFile
{
[JsonProperty(PropertyName = "interactions")]
public IEnumerable<ProviderServiceInteraction> Interactions { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion PactNet/Models/Interaction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace PactNet.Models
{
internal class Interaction
public class Interaction
{
private readonly JsonSerializerSettings _jsonSerializerSettings = new JsonSerializerSettings
{
Expand Down
2 changes: 1 addition & 1 deletion PactNet/Models/PactDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace PactNet.Models
{
internal class PactDetails
public class PactDetails
{
[JsonProperty(Order = -3, PropertyName = "provider")]
public Pacticipant Provider { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion PactNet/Models/PactFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace PactNet.Models
{
internal class PactFile : PactDetails
public class PactFile : PactDetails
{
[JsonProperty(PropertyName = "metadata")]
public dynamic Metadata { get; private set; }
Expand Down
2 changes: 1 addition & 1 deletion PactNet/Models/Pacticipant.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace PactNet.Models
{
internal class Pacticipant
public class Pacticipant
{
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Expand Down

0 comments on commit 3ccc2a5

Please sign in to comment.