blob: 7a4c577797e9ceb362c1bfd5c5e06f1f869b4d95 [file] [log] [blame]
namespace oneM2MClient.Protocols
{
using System;
using System.Diagnostics;
using System.Xml.Serialization;
using System.Collections;
using System.Xml.Schema;
using System.ComponentModel;
using System.Xml;
using System.Collections.Generic;
public partial class cmnr : mgmtResource {
private List<mgmtLinkRef> cmlkField;
public string Aecs {get; set;}
public List<mgmtLinkRef> Cmlk {
get {
if ((this.cmlkField == null)) {
this.cmlkField = new List<mgmtLinkRef>();
}
return this.cmlkField;
}
set {
this.cmlkField = value;
}
}
}
}