geekbot/Geekbot.net/Commands/Utils/Changelog/CommitAuthorDto.cs

11 lines
255 B
C#
Raw Normal View History

using System;
namespace Geekbot.net.Commands.Utils.Changelog
{
2018-05-03 21:20:49 +02:00
public class CommitAuthorDto
{
public string Name { get; set; }
public string Email { get; set; }
public DateTimeOffset Date { get; set; }
}
}