Skip to content

Instantly share code, notes, and snippets.

@micaelbergeron
Created March 22, 2018 01:24
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 micaelbergeron/2a2836d106d7ff4a7d851411ce1995a1 to your computer and use it in GitHub Desktop.
Save micaelbergeron/2a2836d106d7ff4a7d851411ce1995a1 to your computer and use it in GitHub Desktop.
Client
[Table("Clients")]
public class Client {
[PrimaryKey]
[AutoIncrement]
public int ID { get; set; }
[Column("txt_Nom")]
public String Nom { get; set; }
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment