Files
forkmessager/apps/server-net/src/Modules/Identity/Application/Friends/FriendDto.cs
T
2026-03-19 00:59:01 +03:00

15 lines
275 B
C#

using System;
using System.Collections.Generic;
namespace Knot.Modules.Identity.Application.Friends;
public record FriendDto(
Guid Id,
string Username,
string DisplayName,
string? Avatar,
bool IsOnline,
DateTime LastSeenAt,
Guid FriendshipId
);