10 lines
264 B
C#
10 lines
264 B
C#
namespace ChatApi.Requests
|
|
{
|
|
public class FileData
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string ContentType { get; set; } = string.Empty;
|
|
public byte[] Content { get; set; } = Array.Empty<byte>();
|
|
}
|
|
}
|