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

8 lines
186 B
C#
Raw Normal View History

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