Skip to content

Instantly share code, notes, and snippets.

@alexalvess
Created December 7, 2020 22:45
Show Gist options
  • Select an option

  • Save alexalvess/87ab6ad7cb767e8289bc738bf534b824 to your computer and use it in GitHub Desktop.

Select an option

Save alexalvess/87ab6ad7cb767e8289bc738bf534b824 to your computer and use it in GitHub Desktop.
appTenant entity
public class AppTenant
{
public AppTenant(string registerNumber)
{
RegisterNumber = registerNumber;
}
public string RegisterNumber { get; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment