Ohorodnikov
Ohorodnikov
If I want to link dto class with bl, I will use an attribute named [DtoFrom]. ``` [DtoFrom(typeof(SomeBlType))] public partial SomeDto {} ``` Add new attribute with same behaviour with...
Add an attribute to generate DTO model with required props. Like ``` public partial class MyBlModelDTO { public required int Id {get; init;} public required string Code {get; init;} public...
Add an attribute `[ManualDTO]` to mark manual DTO model to use it with ReplaceToDtoProperty strategy