Files
Hushian/Presentation/HushianWebApp/Data/Dtos/ConversationItemDto.cs

24 lines
685 B
C#
Raw Normal View History

2025-07-11 20:37:28 +03:30
using Hushian.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2025-06-28 15:31:07 +03:30
2025-07-11 20:37:28 +03:30
namespace Hushian.Application.Dtos
2025-06-28 15:31:07 +03:30
{
2025-07-11 20:37:28 +03:30
public class ConversationItemDto
2025-06-28 15:31:07 +03:30
{
public int ID { get; set; }
public int ConversationID { get; set; }
2025-07-11 20:37:28 +03:30
public string? ExperID { get; set; }
2025-06-28 15:31:07 +03:30
public bool IsRead { get; set; } = false;
public string ExperName { 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; }
}
}