31 lines
658 B
C#
31 lines
658 B
C#
// Copyright (c) 2017 schick Informatik
|
|
// Description: Einzelner Lock, der vom LockingService abgerufen werden kann
|
|
|
|
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace bsmd.LockingService
|
|
{
|
|
[DataContract]
|
|
public class CoreLock
|
|
{
|
|
private Guid _coreId;
|
|
private Guid _userId;
|
|
|
|
[DataMember]
|
|
public Guid CoreId
|
|
{
|
|
get { return this._coreId; }
|
|
set { this._coreId = value; }
|
|
}
|
|
|
|
[DataMember]
|
|
public Guid UserId
|
|
{
|
|
get { return this._userId; }
|
|
set { this._userId = value; }
|
|
}
|
|
|
|
|
|
}
|
|
} |