IIwbEntityDto.cs 321 B

12345678910111213
  1. namespace IwbZero.AppServiceBase
  2. {
  3. public interface IIwbEntityDto<TPrimaryKey>
  4. where TPrimaryKey:struct
  5. {
  6. TPrimaryKey? Id { get; set; }
  7. }
  8. public class IwbEntityDto<TPrimaryKey>:IIwbEntityDto<TPrimaryKey>
  9. where TPrimaryKey:struct
  10. {
  11. public TPrimaryKey? Id { get; set; }
  12. }
  13. }