Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created December 2, 2016 00:21
Show Gist options
  • Save dcomartin/86a2d33cff2cce05a751bcafd8d83b88 to your computer and use it in GitHub Desktop.
Save dcomartin/86a2d33cff2cce05a751bcafd8d83b88 to your computer and use it in GitHub Desktop.
public class AlbumAddedToCart : INotification
{
public int AlbumId { get; }
public AlbumAddedToCart(int albumId)
{
AlbumId = albumId;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment