mirror of
https://github.com/bitwarden/server
synced 2025-12-27 21:53:24 +00:00
some cleanup on icons
This commit is contained in:
@@ -1,18 +1,8 @@
|
||||
using System;
|
||||
|
||||
namespace Icons.Models
|
||||
namespace Bit.Icons.Models
|
||||
{
|
||||
[Serializable]
|
||||
public class Icon
|
||||
{
|
||||
public byte[] Image { get; }
|
||||
|
||||
public string Format { get; }
|
||||
|
||||
public Icon(byte[] image, string format)
|
||||
{
|
||||
this.Image = image;
|
||||
this.Format = format;
|
||||
}
|
||||
public byte[] Image { get; set; }
|
||||
public string Format { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user