mirror of
https://github.com/bitwarden/server.git
synced 2026-02-01 22:53:12 +08: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; }
|
|
}
|