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