Files
Hushian/Presentation/HushianWebApp/Data/Dtos/ADDConversationItemDto.cs
mmrbnjd ff342a53c0 ...
2025-07-11 20:37:28 +03:30

22 lines
567 B
C#

using Hushian.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hushian.Application.Dtos
{
public class ADDConversationItemDto
{
public int ConversationID { get; set; }
//public string? ExperID { get; set; }
// public ConversationType Type { get; set; }
public string text { get; set; }
public string? FileName { get; set; }
public string? FileType { get; set; }
public byte[]? FileContent { get; set; }
}
}