7 lines
115 B
C#
7 lines
115 B
C#
|
namespace Worker.Data
|
||
|
{
|
||
|
public interface IVoteData
|
||
|
{
|
||
|
void Set(string voterId, string vote);
|
||
|
}
|
||
|
}
|