Skip to content

Instantly share code, notes, and snippets.

@AlexKlugZetbit
Created March 5, 2023 19:18
Show Gist options
  • Save AlexKlugZetbit/1d6df01ce175c59e9ded7d9fa4369c44 to your computer and use it in GitHub Desktop.
Save AlexKlugZetbit/1d6df01ce175c59e9ded7d9fa4369c44 to your computer and use it in GitHub Desktop.
namespace PostgreSQL.Data
{
public class Employee
{
public int Id { get; set; }
public string Name { get; set; }
public string Title { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment