19 lines
629 B
C#
19 lines
629 B
C#
namespace ContactService.WebApi.Application.FriendRequest
|
|
{
|
|
public record CreateFriendRequestCommand
|
|
{
|
|
public Guid ownerId { get; private set; }
|
|
public Guid targetId { get; private set; }
|
|
public string? description { get; private set; }
|
|
public string? remarkName { get; private set; }
|
|
|
|
public CreateFriendRequestCommand(Guid ownerId, Guid targetId, string? description, string? remarkName)
|
|
{
|
|
this.ownerId = ownerId;
|
|
this.targetId = targetId;
|
|
this.description = description;
|
|
this.remarkName = remarkName;
|
|
}
|
|
}
|
|
}
|