Skip to content

Instantly share code, notes, and snippets.

@PadreSVK
Created November 6, 2018 15:22
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 PadreSVK/6d4345c28de1118984ca6c4be0c705a1 to your computer and use it in GitHub Desktop.
Save PadreSVK/6d4345c28de1118984ca6c4be0c705a1 to your computer and use it in GitHub Desktop.
Project entity
public class Project : IEntity<int>
{
public string Description { get; set; }
public string Title { get; set; }
public int Id { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment