Blame view
sources/RoboforkApp.AWS/Entities/DynamoTable.cs
228 Bytes
1debe12ff
|
1 2 3 4 5 6 7 8 9 |
namespace RoboforkApp.AWS.Entities { public class DynamoTable { public string PrimaryKey { get; set; } public string HashKey { get; set; } public string RangeKey { get; set; } } } |