27 lines
461 B
C#
27 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
[DataContract]
|
|
public class BeWoRefDC
|
|
{
|
|
public BeWoRefDC()
|
|
{
|
|
|
|
}
|
|
public BeWoRefDC(long oid, long? version = null)
|
|
{
|
|
Oid = oid;
|
|
Version = version;
|
|
}
|
|
|
|
[DataMember] public long Oid { get; set; }
|
|
[DataMember] public long? Version { get; set; }
|
|
}
|
|
}
|