Files
Govor/Govor.Application/Interfaces/PushNotifications/Models/SendPushResult.cs
T
2026-03-01 16:48:06 +07:00

3 lines
165 B
C#

namespace Govor.Application.Interfaces.PushNotifications.Models;
public record SendPushResult(int SuccessCount, int FailureCount, IEnumerable<string> FailedTokens);