Example #1
0
 public SubsonicItem(string name, string id, SubsonicItemType itemType, SubsonicItem parent)
 {
     this.name         = name;
     this.id           = id;
     this.itemType     = itemType;
     this.parent       = parent;
     this.lastAccessed = DateTime.Now.ToString();
 }
Example #2
0
 public SubsonicItem(string name, string id, SubsonicItemType itemType, SubsonicItem parent)
     : this(name, id)
 {
     this.ItemType = itemType;
     this.Parent = parent;
 }
 public SubsonicItem(string name, string id, SubsonicItemType itemType, SubsonicItem parent)
 {
     this.name = name;
     this.id = id;
     this.itemType = itemType;
     this.parent = parent;
     this.lastAccessed = DateTime.Now.ToString();
 }