Files
raven/server/AyaNova/models/Logo.cs
2020-08-07 21:19:54 +00:00

25 lines
573 B
C#

using System;
using System.Collections.Generic;
using AyaNova.Biz;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Newtonsoft.Json;
namespace AyaNova.Models
{
public class Logo
{
public long Id { get; set; }
public byte[] Large { get; set; }
public string LargeType {get;set;}
public byte[] Medium { get; set; }
public string MediumType {get;set;}
public byte[] Small { get; set; }
public string SmallType {get;set;}
}
}