Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created November 10, 2016 00:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/4afa01c465adfed01c47a27e601d9b8e to your computer and use it in GitHub Desktop.
Save dcomartin/4afa01c465adfed01c47a27e601d9b8e to your computer and use it in GitHub Desktop.
public class AddToCart : ICancellableAsyncRequest<Unit>
{
public string CartId { get; }
public int AlbumId { get; }
public AddToCart(string cartId, int albumId)
{
CartId = cartId;
AlbumId = albumId;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment