Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Last active September 15, 2020 04:45
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 ssukhpinder/1ce5e3d587133db163fab1e289eb17ab to your computer and use it in GitHub Desktop.
Save ssukhpinder/1ce5e3d587133db163fab1e289eb17ab to your computer and use it in GitHub Desktop.
public class SingupClass
{
public SingupClass(string firstName, string lastName, string email)
{
firstname = firstName;
lastname = lastName;
email = email;
}
public string firstname { get; init; }
public string lastname { get; init; }
public string email { get; init; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment