Last active
February 4, 2023 15:26
-
-
Save jonescarvalho/3c095a3b07707bb26ad500cb3b5053de to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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