You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel.Microservices/Model/CheckpointArc.cs

21 lines
614 B

6 years ago
using System.Runtime.Serialization;
namespace ZeroLevel.Microservices.Model
{
[DataContract]
public sealed class CheckpointArc
: Checkpoint
{
public CheckpointArc(Checkpoint other)
{
this.Id = other.Id;
this.Id = other.Id;
this.Timestamp = other.Timestamp;
this.SourceAppKey = other.SourceAppKey;
this.DestinationAppKey = other.DestinationAppKey;
this.CheckpointType = other.CheckpointType;
this.Payload = other.Payload;
this.ReasonPhrase = other.ReasonPhrase;
}
}
}

Powered by TurnKey Linux.