geekbot/Geekbot.net/Commands/Utils/Poll/PollResultDto.cs

8 lines
No EOL
186 B
C#

namespace Geekbot.net.Commands.Utils.Poll
{
internal class PollResultDto
{
public string Option { get; set; }
public int VoteCount { get; set; }
}
}