123456789101112131415161718192021222324252627 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class CmFileCategory
- {
- public CmFileCategory()
- {
- this.CmFile = new HashSet<CmFile>();
- }
-
- public int FileCategoryId { get; set; }
- public string Name { get; set; }
-
- public virtual ICollection<CmFile> CmFile { get; set; }
- }
- }
|