Files
BeWoPlaner/Data/Entities/Image.cs

22 lines
529 B
C#
Raw Normal View History

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;
}
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; }
}
}