21 lines
421 B
C#
21 lines
421 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Knot.Modules.Chats.Application.DTOs;
|
|
|
|
public record SharedMediaDto(
|
|
Guid Id,
|
|
string? Content,
|
|
DateTime CreatedAt,
|
|
List<string>? Links,
|
|
MessageSenderDto? Sender,
|
|
Guid? ReplyToId,
|
|
string? Quote,
|
|
Guid? StoryId,
|
|
string? StoryMediaUrl,
|
|
string? StoryMediaType,
|
|
bool? IsEdited,
|
|
string? Type,
|
|
List<MediaDto>? Media
|
|
);
|