19 lines
409 B
C#
19 lines
409 B
C#
using BS.Shared;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class DeletionHistory : BeWoEntityBase
|
|
{
|
|
public DeletionHistory()
|
|
{
|
|
_Tid = TableID.DeletionHistory;
|
|
}
|
|
|
|
public virtual string DeletingEmployeeName { get; set; }
|
|
|
|
public virtual string DeletedEntityName { get; set; }
|
|
|
|
public virtual TableID DeletedEntityTableId { get; set; }
|
|
}
|
|
}
|