8 lines
186 B
C#
8 lines
186 B
C#
|
namespace Geekbot.net.Commands.Utils.Poll
|
|||
|
{
|
|||
|
internal class PollResultDto
|
|||
|
{
|
|||
|
public string Option { get; set; }
|
|||
|
public int VoteCount { get; set; }
|
|||
|
}
|
|||
|
}
|