19 lines
344 B
C#
19 lines
344 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace BeWo.Data.Entities
|
|
{
|
|
public class Customer2AddServiceBooking
|
|
{
|
|
public virtual long? Oid { get; set; }
|
|
|
|
public virtual long CustomerOid { get; set; }
|
|
|
|
public virtual bool Participated { get; set; }
|
|
|
|
|
|
}
|
|
}
|