mirror of
https://github.com/bitwarden/server.git
synced 2025-07-24 11:00:43 -05:00
8 lines
131 B
C#
8 lines
131 B
C#
namespace Bit.Icons.Models;
|
|
|
|
public class Icon
|
|
{
|
|
public byte[] Image { get; set; }
|
|
public string Format { get; set; }
|
|
}
|