Created
July 25, 2017 16:11
-
-
Save filipececcon/28d86d9002b023b27d0df699646d7a92 to your computer and use it in GitHub Desktop.
BaseEntity.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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