mirror of
https://github.com/dockersamples/example-voting-app.git
synced 2026-05-09 11:06:57 +00:00
10 lines
131 B
C#
10 lines
131 B
C#
using Result.Models;
|
|
|
|
namespace Result.Data
|
|
{
|
|
public interface IResultData
|
|
{
|
|
ResultsModel GetResults();
|
|
}
|
|
}
|