Skip to content

Instantly share code, notes, and snippets.

@vmussak
Created February 12, 2019 00:49
Embed
What would you like to do?
//Organização
public class TrelloOrganization
{
public string Id { get; set; }
public string DisplayName { get; set; }
}
//Quadro
public class TrelloBoard
{
public string Id { get; set; }
public string IdOrganization { get; set; }
public string Name { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment