mirror of
https://github.com/bitwarden/server
synced 2025-12-20 18:23:44 +00: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; }
|
|
}
|
|
}
|