25 lines
573 B
C#
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;}
|
|
|
|
|
|
}
|
|
|
|
}
|