9 lines
195 B
C#
9 lines
195 B
C#
namespace TightWiki.Models.DataModels
|
|
{
|
|
public class ProfileAvatar
|
|
{
|
|
public byte[]? Bytes { get; set; }
|
|
public string ContentType { get; set; } = string.Empty;
|
|
}
|
|
}
|