Skip to content

Instantly share code, notes, and snippets.

@JIOO-phoeNIX
Last active October 12, 2020 22:08
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 JIOO-phoeNIX/2a0a6b77503502610863439c9aa51a14 to your computer and use it in GitHub Desktop.
Save JIOO-phoeNIX/2a0a6b77503502610863439c9aa51a14 to your computer and use it in GitHub Desktop.
using System.ComponentModel.DataAnnotations;
namespace CockroachDbLib.Models
{
public class Account
{
[Key]
public int id { get; set; }
public int balance { 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