27 lines
939 B
C#
27 lines
939 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Service.MeterProcessState.Data
|
|
{
|
|
public partial class FileClusterStore : Ui.Web.IMeterDataCenter.Data.BaseEntity
|
|
{
|
|
public FileClusterStore()
|
|
{
|
|
CordonelFwFile = new HashSet<CordonelFwFile>();
|
|
FileMapToCluster = new HashSet<FileMapToCluster>();
|
|
}
|
|
|
|
public int FileId { get; set; }
|
|
public string FileName { get; set; }
|
|
public bool FileIsLatest { get; set; }
|
|
public DateTime FileDate { get; set; }
|
|
public bool FileIsForDeveloperOnly { get; set; }
|
|
public int FileCategoryId { get; set; }
|
|
public bool FileIsDeleted { get; set; }
|
|
|
|
public virtual FileClusterCategory FileCategory { get; set; }
|
|
public virtual ICollection<CordonelFwFile> CordonelFwFile { get; set; }
|
|
public virtual ICollection<FileMapToCluster> FileMapToCluster { get; set; }
|
|
}
|
|
}
|