diff --git a/Providers/Dtos/XSubCategoryResourceDto.cs b/Providers/Dtos/XSubCategoryResourceDto.cs
index 2ce230c..c9bcd63 100644
--- a/Providers/Dtos/XSubCategoryResourceDto.cs
+++ b/Providers/Dtos/XSubCategoryResourceDto.cs
@@ -6,8 +6,25 @@ namespace xCategoryService.Providers.Dtos
{
public class XSubCategoryResourceDto : XBaseDto
{
+ ///
+ /// SubCategory Dto Item for Add or Update ...
+ ///
public XSubCategoryDto Item { get; set; }
+
+ ///
+ /// Exists SubCategory Titles ...
+ ///
public XResourceDto Titles { get; set; }
+
+ ///
+ /// Exists SubCategory Description ...
+ ///
public XResourceDto Descriptions { get; set; }
+
+ ///
+ /// Exists Category Resource Dto for Add or Update Category or
+ /// Related Categopry ...
+ ///
+ public XCategoryResourceDto Category { get; set; }
}
}
\ No newline at end of file