16 lines
331 B
C#
16 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using Knot.Modules.Relations.Application.Abstractions;
|
|
namespace Knot.Modules.Relations.Application.Friends;
|
|
|
|
public record FriendDto(
|
|
Guid Id,
|
|
string Username,
|
|
string DisplayName,
|
|
string? Avatar,
|
|
bool IsOnline,
|
|
DateTime LastSeenAt,
|
|
Guid FriendshipId
|
|
);
|