1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CollaborativePlatformMain.DFEntity
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public class LVProjectInfoEntity
- {
-
-
-
-
-
- public LVProjectInfoEntity(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; }
- }
- }
|