ObjectReplicationRule
Contains the Object Replication Rule ID and Replication Status(
             ObjectReplicationStatus) of a blob.
            There can be more than one  ObjectReplicationRule under a
             ObjectReplicationPolicy. Object Replication Rule IDs
            
                namespace Azure.Storage.Blobs.Models
{
    public class ObjectReplicationRule
    {
        public string RuleId { get; set; }
        public ObjectReplicationStatus ReplicationStatus { get; set; }
        internal ObjectReplicationRule()
        {
        }
    }
}