Skip to content

Instantly share code, notes, and snippets.

@jonescarvalho
Last active February 4, 2023 15:26
Show Gist options
  • Save jonescarvalho/3c095a3b07707bb26ad500cb3b5053de to your computer and use it in GitHub Desktop.
Save jonescarvalho/3c095a3b07707bb26ad500cb3b5053de to your computer and use it in GitHub Desktop.
public class Book
{
public Guid Id { get; set; }
public string Title { get; set; }
public string Author { get; set; }
}
public class Album
{
public Guid Id { get; set; }
public string Title { get; set; }
public string Artist { get; set; }
}
public class Person
{
public Guid Id { get; set; }
public string Name { get; set; }
public long Phone { get; set; }
public string Address { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment