Created
September 30, 2020 00:09
-
-
Save oguzhancagliyan/ae3749ed63448b87e7b55a74d641656e to your computer and use it in GitHub Desktop.
MovieEntity
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
[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