cloudnet-compose/worker/dotnet/Worker/Data/IVoteData.cs

7 lines
115 B
C#
Raw Normal View History

2018-09-21 20:23:31 +02:00
namespace Worker.Data
{
public interface IVoteData
{
void Set(string voterId, string vote);
}
}