mirror of
https://github.com/bitwarden/server
synced 2026-02-27 01:43:46 +00:00
11 lines
224 B
C#
11 lines
224 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
namespace Bit.Icons.Models;
|
|
|
|
public class Icon
|
|
{
|
|
public byte[] Image { get; set; }
|
|
public string Format { get; set; }
|
|
}
|