model and Dto
This commit is contained in:
13
Common/Dtos/Conversation/ADD_ConversationItemDto.cs
Normal file
13
Common/Dtos/Conversation/ADD_ConversationItemDto.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
namespace Common.Dtos.Conversation
|
||||
{
|
||||
public class ADD_ConversationItemDto
|
||||
{
|
||||
public int ConversationID { get; set; }
|
||||
public string Text { get; set; }
|
||||
public string? FileName { get; set; }
|
||||
public string? FileType { get; set; }
|
||||
public byte[]? FileContent { get; set; }
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user