22 lines
440 B
C#
22 lines
440 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 byte[] Medium { get; set; }
|
|
public byte[] Small { get; set; }
|
|
|
|
|
|
}
|
|
|
|
}
|