Skip to content

Instantly share code, notes, and snippets.

@A2H111
Created December 29, 2017 23:54
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 A2H111/15fbcba8a29845664a82254ca2334efe to your computer and use it in GitHub Desktop.
Save A2H111/15fbcba8a29845664a82254ca2334efe to your computer and use it in GitHub Desktop.
public class Customer
{
[BsonId]
public ObjectId Id { get; set; }
[BsonElement]
public int CustomerId { get; set; }
[BsonElement]
public string CustomerName { get; set; }
[BsonElement]
public string Address { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment