15 lines
275 B
C#
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
|
|
);
|