mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-01-27 09:13:15 +00:00
26 lines
452 B
C#
26 lines
452 B
C#
|
|
using System.Collections.Generic;
|
|
namespace DSInternals.Replication.Model
|
|
{
|
|
public class ReplicaAttribute
|
|
{
|
|
public ReplicaAttribute(int id, byte[][] values)
|
|
{
|
|
this.Id = id;
|
|
this.Values = values;
|
|
}
|
|
|
|
public int Id
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public byte[][] Values
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
}
|
|
}
|