Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Last active May 21, 2017 10:17
Show Gist options
  • Save dsibinski/4970ea35805b27453dc55aa0d5688e5f to your computer and use it in GitHub Desktop.
Save dsibinski/4970ea35805b27453dc55aa0d5688e5f to your computer and use it in GitHub Desktop.
[Table("RegistrationCertificates")]
public class RegistrationCertificate
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
public string RegistrationNumber { get; set; }
public string VIN { get; set; }
public string OwnerData { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment