mirror of https://github.com/ogoun/Zero.git
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.
21 lines
602 B
21 lines
602 B
using System.Runtime.Serialization;
|
|
|
|
namespace ZeroLevel.Network
|
|
{
|
|
[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;
|
|
}
|
|
}
|
|
} |