using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NP.Model { public class VMCC : VMBase { /// /// 0: 공지사항(구내부공지사항), 1: PDS(구내부자료실+일반자료실), 2: 홈페이지(Media Center), 3: 홈페이지(FAQ), 4: 홈페이지(Career Column), 9: 주별공지 /// public int BType { get; set; } public IList Boards { get; set; } public IList Boards2 { get; set; } public Board Board { get; set; } public Board BoardP { get; set; } public Int64 BNo { get; set; } public Int64? PBNo { get; set; } public IList Memos { get; set; } public IList Memos2 { get; set; } public IList Memos3 { get; set; } public Memo Memo { get; set; } public Memo Memo2 { get; set; } public String sendorrcv { get; set; } public Int64 mno { get; set; } public IList Emails {get;set;} public EmailSend EmailSend { get; set; } public Users User { get; set; } public IList ComGroups { get; set; } public IList BMs { get; set; } public BoardMaster BM { get; set; } public IList BMOs { get; set; } public IList Assigns { get; set; } public IList BoardCMTs { get; set; } public IList Terms { get; set; } public IList CMs { get; set; } public int? opno { get; set; } public String scc { get; set; } public int boardpno { get; set; } public int boardvpno { get; set; } public int boardwpno { get; set; } public int pmenupageno { get; set; } public String sr { get; set; } public IList userauths { get; set; } } }