2025-04-14 10:15:45 +02:00
|
|
|
|
using BS.Shared;
|
|
|
|
|
|
using System;
|
2025-04-02 16:01:21 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BeWo.Data.Entities
|
|
|
|
|
|
{
|
|
|
|
|
|
public class BeWoEntityReference
|
|
|
|
|
|
{
|
|
|
|
|
|
public virtual long Oid { get; set; }
|
2025-04-14 10:15:45 +02:00
|
|
|
|
public virtual TableID Tid { get; set; }
|
2025-04-02 16:01:21 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|