11 lines
247 B
C#
11 lines
247 B
C#
using System;
|
|
|
|
using Knot.Modules.Relations.Application.Abstractions;
|
|
namespace Knot.Modules.Relations.Application.Friends;
|
|
|
|
public record FriendshipStatusResponse(
|
|
string Status,
|
|
Guid? FriendshipId = null,
|
|
string? Direction = null
|
|
);
|