9 lines
		
	
	
		
			154 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			154 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Domains
 | |
| {
 | |
|     /// Interface that every entity should inherit from
 | |
|     public interface IEntity
 | |
|     {
 | |
|         public Guid Id { get; }
 | |
|     }
 | |
| }
 |