-
-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1931d85
commit 5b2274f
Showing
7 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
test/Riok.Mapperly.IntegrationTests/Models/ExistingObjects/ExistingObjectBase.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace Riok.Mapperly.IntegrationTests.Models.ExistingObjects | ||
{ | ||
public class ExistingObjectBase | ||
{ | ||
public int Value { get; set; } | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
test/Riok.Mapperly.IntegrationTests/Models/ExistingObjects/ExistingObjectBaseDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace Riok.Mapperly.IntegrationTests.Models.ExistingObjects | ||
{ | ||
public class ExistingObjectBaseDto | ||
{ | ||
public int Value { get; } | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
test/Riok.Mapperly.IntegrationTests/Models/ExistingObjects/ExistingObjectTypeA.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace Riok.Mapperly.IntegrationTests.Models.ExistingObjects | ||
{ | ||
public class ExistingObjectTypeA | ||
{ | ||
public int ValueA { get; set; } | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
test/Riok.Mapperly.IntegrationTests/Models/ExistingObjects/ExistingObjectTypeADto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace Riok.Mapperly.IntegrationTests.Models.ExistingObjects | ||
{ | ||
public class ExistingObjectTypeADto | ||
{ | ||
public int ValueA { get; } | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
test/Riok.Mapperly.IntegrationTests/Models/ExistingObjects/ExistingObjectTypeB.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace Riok.Mapperly.IntegrationTests.Models.ExistingObjects | ||
{ | ||
public class ExistingObjectTypeB | ||
{ | ||
public int ValueB { get; set; } | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
test/Riok.Mapperly.IntegrationTests/Models/ExistingObjects/ExistingObjectTypeBDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace Riok.Mapperly.IntegrationTests.Models.ExistingObjects | ||
{ | ||
public class ExistingObjectTypeBDto | ||
{ | ||
public int ValueB { get; set; } | ||
} | ||
} |