8 lines
215 B
C#
8 lines
215 B
C#
using SVSim.Database.Enums;
|
|
|
|
namespace SVSim.Database.Repositories.Viewer;
|
|
|
|
public interface IViewerRepository
|
|
{
|
|
Task<Models.Viewer?> GetViewerBySocialConnection(SocialAccountType accountType, ulong socialId);
|
|
} |