diff --git a/src/Nager.Authentication.TestProject.WebApp/Dtos/TimeInfoDto.cs b/src/Nager.Authentication.TestProject.WebApp/Dtos/TimeInfoDto.cs
index d7727f2..7bb3f81 100644
--- a/src/Nager.Authentication.TestProject.WebApp/Dtos/TimeInfoDto.cs
+++ b/src/Nager.Authentication.TestProject.WebApp/Dtos/TimeInfoDto.cs
@@ -1,9 +1,23 @@
namespace Nager.Authentication.TestProject.WebApp.Dtos
{
+ ///
+ /// Time Info Dto
+ ///
public class TimeInfoDto
{
+ ///
+ /// Hour
+ ///
public int Hour { get; set; }
+
+ ///
+ /// Minute
+ ///
public int Minute { get; set; }
+
+ ///
+ /// Second
+ ///
public int Second { get; set; }
}
}