mirror of
https://github.com/dockersamples/example-voting-app.git
synced 2026-05-09 02:56:45 +00:00
12 lines
200 B
C#
12 lines
200 B
C#
namespace Result.Models
|
|
{
|
|
public class ResultsModel
|
|
{
|
|
public int OptionA { get; set; }
|
|
|
|
public int OptionB { get; set; }
|
|
|
|
public int VoteCount { get; set; }
|
|
}
|
|
}
|