12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CollaborativePlatformProject.CollaborationPlatform.Entity
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public class LVTeamMembersEntity
- {
-
-
-
-
-
- public LVTeamMembersEntity(string lab, string name)
- {
- Lab = lab;
- Name = name;
- Content = lab + name;
- }
-
-
-
- public string Lab { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string Content { get; set; }
- }
- }
|