This commit is contained in:
runebaas 2018-05-03 21:20:49 +02:00
parent e3adf55742
commit 0828130ae8
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6
8 changed files with 16 additions and 17 deletions

View file

@ -2,7 +2,7 @@
namespace Geekbot.net.Commands.Utils.Changelog
{
internal class CommitAuthorDto
public class CommitAuthorDto
{
public DateTimeOffset Date { get; set; }
}

View file

@ -1,6 +1,6 @@
namespace Geekbot.net.Commands.Utils.Changelog
{
internal class CommitDto
public class CommitDto
{
public CommitInfoDto Commit { get; set; }
}

View file

@ -1,6 +1,6 @@
namespace Geekbot.net.Commands.Utils.Changelog
{
internal class CommitInfoDto
public class CommitInfoDto
{
public CommitAuthorDto AuthorDto { get; set; }
public string Message { get; set; }