Response.cs 167 B

123456
  1. namespace Application.Features.Api.Stocks.Watch.IsWatching;
  2. public sealed class Response
  3. {
  4. public required IReadOnlyDictionary<string, bool> Map { get; init; }
  5. }