Files
BeWoPlaner/Data/Entities/Customer2AddServiceBooking.cs

19 lines
344 B
C#
Raw Permalink Normal View History

2016-06-27 01:45:38 +02:00
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; }
}
}