Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created November 10, 2016 00:43
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