1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CollaborativePlatformMain.DFEntity.MessageSubUtil
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public class ContactsUtil
- {
-
-
-
-
-
- public ContactsUtil(string id, string name)
- {
- Id = id;
- Name = name;
- }
-
-
-
-
-
-
- public ContactsUtil(string id, string name, List<ContactsUtil> subDatas) : this(id, name)
- {
- SubDatas = subDatas;
- }
-
-
-
- public string Id { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public List<ContactsUtil> SubDatas { get; set; } = new List<ContactsUtil>();
- }
- }
|