Files
BeWoPlaner/Data/Entities/BeWoEntityReference.cs
2025-04-14 10:15:45 +02:00

16 lines
293 B
C#

using BS.Shared;
using System;
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; }
public virtual TableID Tid { get; set; }
}
}