123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using wispro.sp.entity;
- namespace wispro.sp.share
- {
- public class ProjectContents
- {
- public ProjectContentRecord ProjectContentRecord { get; set; }
- public List<ViewProjectWorkContent> ProjectWorkContents { get; set; }
- }
- public class ViewProjectWorkContent : ProjectWorkContent
- {
- public ModifyState modifyState { get; set; }
- }
- public enum ModifyState
- {
- UnChanged,
- Modified,
- New,
- Deleted
- }
-
- }
|