mirror of
https://github.com/bitwarden/server.git
synced 2025-05-16 17:15:40 -05:00
9 lines
153 B
C#
9 lines
153 B
C#
namespace Bit.Icons.Models
|
|
{
|
|
public class Icon
|
|
{
|
|
public byte[] Image { get; set; }
|
|
public string Format { get; set; }
|
|
}
|
|
}
|