1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-24 11:00:43 -05:00
Files
bitwarden/src/Icons/Models/Icon.cs
2022-08-29 14:53:16 -04:00

8 lines
131 B
C#

namespace Bit.Icons.Models;
public class Icon
{
public byte[] Image { get; set; }
public string Format { get; set; }
}