1
0
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:
Kyle Spearrin
2017-10-09 13:35:07 -04:00
parent b84473f9eb
commit 164d4e1fb4
6 changed files with 37 additions and 46 deletions

View File

@@ -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; }
}
}