using System.Collections.Generic; namespace Timeline.Services.User.RegisterCode { public interface IRegisterCodeService { string? GetCurrentRegisterCode(long userId); List GetAllRegisterCodes(long userId); string CreateNewRegisterCode(long userId); List GetUsersIntroducedByCode(string registerCode); List GetUsersIntroducedByUser(long userId); } }