Files
server/src/Icons/Models/Icon.cs
2022-08-29 16:06:55 -04:00

8 lines
131 B
C#

namespace Bit.Icons.Models;
public class Icon
{
public byte[] Image { get; set; }
public string Format { get; set; }
}