nullable dto

This commit is contained in:
azyges
2025-09-29 04:57:07 +09:00
parent 5bfd21aaa9
commit 69f0e310bd

View File

@@ -74,7 +74,7 @@ public interface ILightlessHub
Task<bool> SetGroupBroadcastStatus(GroupBroadcastRequestDto dto);
Task<List<GroupJoinDto>> GetBroadcastedGroups(List<BroadcastStatusInfoDto> broadcastEntries);
Task<BroadcastStatusInfoDto?> IsUserBroadcasting(string hashedCid);
Task<BroadcastStatusBatchDto> AreUsersBroadcasting(List<string> hashedCids);
Task<BroadcastStatusBatchDto?> AreUsersBroadcasting(List<string> hashedCids);
Task<TimeSpan?> GetBroadcastTtl(string hashedCid);
Task UserDelete();