Skip to content

Instantly share code, notes, and snippets.

@subhendu-de
Created December 9, 2018 13:56
Show Gist options
  • Save subhendu-de/7c8cc6773dbff2148d8fea3dea24bc0a to your computer and use it in GitHub Desktop.
Save subhendu-de/7c8cc6773dbff2148d8fea3dea24bc0a to your computer and use it in GitHub Desktop.
namespace eKart.Api.Model
{
public class Product
{
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.None)]
public int ID { get; set; }
public string Name {get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment