2017-02-01 13:53:59 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
using BS.Shared;
|
|
|
|
|
|
using BS.Shared.Core;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BeWo.Data.Entities
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Image : BeWoEntityBase
|
|
|
|
|
|
{
|
2024-08-27 12:29:46 +02:00
|
|
|
|
public Image()
|
|
|
|
|
|
{
|
|
|
|
|
|
_Tid = TableID.Image;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-08-27 14:17:14 +02:00
|
|
|
|
public virtual string Filename { get; set; }
|
|
|
|
|
|
public virtual string Fullname { get; set; }
|
|
|
|
|
|
public virtual byte[] Original { get; set; }
|
2017-02-01 13:53:59 +01:00
|
|
|
|
public virtual byte[] MediumThumbnail { get; set; }
|
|
|
|
|
|
public virtual byte[] SmallThumbnail { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|