Skip to content

Instantly share code, notes, and snippets.

@sandeepkumar17
Created May 31, 2022 06:55
Show Gist options
  • Save sandeepkumar17/25e8ebdff8ff5b22407ee4b7bf401f77 to your computer and use it in GitHub Desktop.
Save sandeepkumar17/25e8ebdff8ff5b22407ee4b7bf401f77 to your computer and use it in GitHub Desktop.
public class Contact
{
public int? ContactId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public string PhoneNumber { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment