mirror of
https://github.com/dockersamples/example-voting-app.git
synced 2026-05-08 10:36:54 +00:00
7 lines
115 B
C#
7 lines
115 B
C#
namespace Worker.Data
|
|
{
|
|
public interface IVoteData
|
|
{
|
|
void Set(string voterId, string vote);
|
|
}
|
|
} |