source: ChapterX.Domain/Shared/IEntity.cs

main
Last change on this file was 877c13c, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago

Added files

  • Property mode set to 100644
File size: 234 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace ChapterX.Domain.Shared
8{
9 public interface IEntity
10 {
11 public int Id { get; set; }
12 }
13}
Note: See TracBrowser for help on using the repository browser.