26 lines
541 B
C#
26 lines
541 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Runtime.Serialization;
|
|||
|
|
|
|||
|
|
namespace BS.Shared.DataContracts
|
|||
|
|
{
|
|||
|
|
[DataContract]
|
|||
|
|
public class SignatureDC : IDataContract
|
|||
|
|
{
|
|||
|
|
[DataMember]
|
|||
|
|
public long? ServiceRecordOid { get; set; }
|
|||
|
|
|
|||
|
|
[DataMember]
|
|||
|
|
public string Latitute { get; set; }
|
|||
|
|
|
|||
|
|
[DataMember]
|
|||
|
|
public string Longitute { get; set; }
|
|||
|
|
|
|||
|
|
[DataMember]
|
|||
|
|
public DateTime Zeitstempel { get; set; }
|
|||
|
|
|
|||
|
|
[DataMember]
|
|||
|
|
public string DataBild { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|