Generator Changes at 11/25/2025 1:59:23 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-25 02:03:51 +03:30
parent 87842f0b9b
commit 92a9a0e75d
77 changed files with 164 additions and 138 deletions
@@ -12,5 +12,4 @@ public record CreateNewTagCommand : IRequest<CreateNewTagResponseDto>
//ترتیب نمایش
public int SortOrder { get; init; }
}
}
@@ -4,5 +4,4 @@ public class CreateNewTagResponseDto
//شناسه
public long Id { get; set; }
}
}
@@ -4,5 +4,4 @@ public record DeleteTagCommand : IRequest<Unit>
//شناسه
public long Id { get; init; }
}
}
@@ -14,4 +14,3 @@ public class DeleteTagCommandValidator : AbstractValidator<DeleteTagCommand>
return result.Errors.Select(e => e.ErrorMessage);
};
}
@@ -14,5 +14,4 @@ public record UpdateTagCommand : IRequest<Unit>
//ترتیب نمایش
public int SortOrder { get; init; }
}
}
@@ -8,8 +8,7 @@ public record GetAllTagByFilterQuery : IRequest<GetAllTagByFilterResponseDto>
//فیلتر
public GetAllTagByFilterFilter? Filter { get; init; }
}
public class GetAllTagByFilterFilter
}public class GetAllTagByFilterFilter
{
//شناسه
public long? Id { get; set; }
@@ -24,4 +23,3 @@ public class GetAllTagByFilterFilter
//ترتیب نمایش
public int? SortOrder { get; set; }
}
@@ -12,4 +12,3 @@ public class GetAllTagByFilterQueryValidator : AbstractValidator<GetAllTagByFilt
return result.Errors.Select(e => e.ErrorMessage);
};
}
@@ -6,8 +6,7 @@ public class GetAllTagByFilterResponseDto
//مدل خروجی
public List<GetAllTagByFilterResponseModel>? Models { get; set; }
}
public class GetAllTagByFilterResponseModel
}public class GetAllTagByFilterResponseModel
{
//شناسه
public long Id { get; set; }
@@ -22,4 +21,3 @@ public class GetAllTagByFilterResponseModel
//ترتیب نمایش
public int SortOrder { get; set; }
}
@@ -4,5 +4,4 @@ public record GetTagQuery : IRequest<GetTagResponseDto>
//شناسه
public long Id { get; init; }
}
}
@@ -14,4 +14,3 @@ public class GetTagQueryValidator : AbstractValidator<GetTagQuery>
return result.Errors.Select(e => e.ErrorMessage);
};
}
@@ -14,5 +14,4 @@ public class GetTagResponseDto
//ترتیب نمایش
public int SortOrder { get; set; }
}
}