Files
GmRelayBot/src/GmRelay.Shared/Platform/PlatformUser.cs
T
Toutsu 8bcd16fbc9
PR Checks / test-and-build (pull_request) Successful in 12m35s
refactor: add platform messenger contracts
Introduce platform-neutral PlatformKind, PlatformUser, PlatformGroup, and IPlatformMessenger contracts in GmRelay.Shared.

Route Telegram session schedule updates, direct notifications, interaction replies, and calendar export through TelegramPlatformMessenger while preserving existing Telegram behavior.

Bump version -> 2.0.1
2026-05-15 12:30:37 +03:00

8 lines
180 B
C#

namespace GmRelay.Shared.Platform;
public sealed record PlatformUser(
PlatformKind Platform,
string ExternalUserId,
string DisplayName,
string? ExternalUsername);