Skip to content

Commit

Permalink
Optimize summary
Browse files Browse the repository at this point in the history
  • Loading branch information
tinohager committed Jul 10, 2024
1 parent 22756f4 commit 4deda4b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/Nager.Authentication.TestProject.WebApp/Dtos/TimeInfoDto.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
namespace Nager.Authentication.TestProject.WebApp.Dtos
{
/// <summary>
/// Time Info Dto
/// </summary>
public class TimeInfoDto
{
/// <summary>
/// Hour
/// </summary>
public int Hour { get; set; }

/// <summary>
/// Minute
/// </summary>
public int Minute { get; set; }

/// <summary>
/// Second
/// </summary>
public int Second { get; set; }
}
}

0 comments on commit 4deda4b

Please sign in to comment.