YouTubePubSubNotification.cs 200 B

123456789
  1. namespace Application.Abstractions.YouTube;
  2. public sealed record YouTubePubSubNotification(
  3. string VideoId,
  4. string ChannelId,
  5. string Title,
  6. DateTime Published,
  7. DateTime Updated
  8. );