namespace IwbZero.AppServiceBase { public interface IIwbEntityDto where TPrimaryKey : struct { TPrimaryKey? Id { get; set; } } public class IwbEntityDto : IIwbEntityDto where TPrimaryKey : struct { public TPrimaryKey? Id { get; set; } } public interface IIwbEntityDto { string Id { get; set; } } public class IwbEntityDto : IIwbEntityDto { public string Id { get; set; } } }