Files
forkmessager/apps/server-net/src/Modules/Chats/Application/DTOs/SharedMediaDto.cs
Халимов Рустам 59e0cf7667 DDD
2026-03-19 00:59:01 +03:00

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
);