namespace Nuuru.Server.DTOs.Watch { public class WatchResponse { public bool IsWatching { get; set; } public int WatchCount { get; set; } } public class ToggleWatchRequest { public string TargetType { get; set; } = string.Empty; public int TargetId { get; set; } } }