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; } } }