Layla-P / HacktoberfestProject

Log your Hacktoberfest .NET PRs at prtracker.net
Other
8 stars 17 forks source link

Add Table Storage with Cosmos DB API #3

Closed Layla-P closed 4 years ago

Layla-P commented 4 years ago

Use this repo as a template perhaps: https://github.com/Layla-P/LittleWins/tree/master/LittleWins/Data

CrypticEnigma00 commented 4 years ago

I was thinking something like this for the table storage to make it very simple and use the Github API to get the details.

{
     "id": "GitHub Guid of the current user",
    "repopositoryPrAddedTo":[
        {
        "owner":"Name of repository owner",
        "repositoryname":"",
        "prs":[
            {
               "prid":"id number of pr",
                "url":"url of PR"
            }
        ]
        }
    ]
}
Layla-P commented 4 years ago

That structure looks good!