23 lines
423 B
C#
23 lines
423 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using BS.Shared;
|
|
using BS.Shared.Core;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class Image : BeWoEntityBase
|
|
{
|
|
public Image()
|
|
{
|
|
_Tid = TableID.Image;
|
|
}
|
|
|
|
public virtual byte[] Original { get; set; }
|
|
|
|
public virtual byte[] MediumThumbnail { get; set; }
|
|
|
|
public virtual byte[] SmallThumbnail { get; set; }
|
|
|
|
}
|
|
} |