Files
LightlessAPI/LightlessSyncAPI/Dto/User/LocationSharingToggleDto.cs
defnotken 4ecd5375e6 location (#20)
Co-authored-by: Tsubasahane <wozaiha@gmail.com>
Reviewed-on: #20
2025-12-31 14:12:11 +00:00

6 lines
191 B
C#

using MessagePack;
namespace LightlessSync.API.Dto.User;
[MessagePackObject(keyAsPropertyName: true)]
public record LocationSharingToggleDto(List<string> users, DateTimeOffset duration);