Skip to content

Instantly share code, notes, and snippets.

@filipececcon
Created July 25, 2017 16:11
Show Gist options
  • Save filipececcon/28d86d9002b023b27d0df699646d7a92 to your computer and use it in GitHub Desktop.
Save filipececcon/28d86d9002b023b27d0df699646d7a92 to your computer and use it in GitHub Desktop.
BaseEntity.cs
namespace Domain.Entities
{
public abstract class BaseEntity
{
public int Id { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment