19 lines
506 B
C#
19 lines
506 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Service.MeterProcessState.Data
|
|
{
|
|
public partial class FileClusterCategory : Ui.Web.IMeterDataCenter.Data.BaseEntity
|
|
{
|
|
public FileClusterCategory()
|
|
{
|
|
FileClusterStore = new HashSet<FileClusterStore>();
|
|
}
|
|
|
|
public Int32 FileCategoryId { get; set; }
|
|
public String FileCategoryName { get; set; }
|
|
|
|
public virtual ICollection<FileClusterStore> FileClusterStore { get; set; }
|
|
}
|
|
}
|