Skip to content

Instantly share code, notes, and snippets.

@dbarkol
Created May 5, 2018 23:35
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 dbarkol/57f9ab922471752a3476415f9ff14376 to your computer and use it in GitHub Desktop.
Save dbarkol/57f9ab922471752a3476415f9ff14376 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
namespace CloudEventSample.Models
{
public class Band
{
public string Name { get; set; }
public List<Album> Albums { get; set; }
}
public class Album
{
public string AlbumName { get; set; }
public int YearReleased { get; set; }
public string RecordLabel { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment