Skip to content

Instantly share code, notes, and snippets.

@oguzhancagliyan
Created September 30, 2020 00:09
Show Gist options
  • Save oguzhancagliyan/ae3749ed63448b87e7b55a74d641656e to your computer and use it in GitHub Desktop.
Save oguzhancagliyan/ae3749ed63448b87e7b55a74d641656e to your computer and use it in GitHub Desktop.
MovieEntity
[DynamoDBTable("Movies")]
public class MovieEntity
{
[DynamoDBHashKey]
public Guid DirectorId { get; set; }
[DynamoDBRangeKey]
public string CreateDate { get; set; }
public Guid MovieId { get; set; }
public string MovieName { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment