We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3384000 commit 55a7cd6Copy full SHA for 55a7cd6
2 files changed
samples/RequestAndResponseObjects/Person.cs
@@ -1,7 +1,7 @@
1
using Amazon.DynamoDBv2.DataModel;
2
using DynamoDBGenerator.Attributes;
3
4
-namespace Dto;
+namespace RequestAndResponseObjects;
5
6
// A typical scenario would be that you would use multiple DynamoDBMarshaller and describe your operations via AccessName.
7
// If you do not specify an ArgumentType it will use your main entity Type instead which is typically useful for PUT operations.
samples/RequestAndResponseObjects/Program.cs
@@ -2,8 +2,8 @@
using System.Net;
using Amazon.DynamoDBv2.Model;
-using Dto;
using DynamoDBGenerator.Extensions;
+using RequestAndResponseObjects;
8
static GetItemRequest CreateGetItemRequest()
9
{
0 commit comments