29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
using System;
|
|
|
|
namespace Logic.ProductionToProductMapper.Files.Fw
|
|
{
|
|
/// <summary>
|
|
/// Clustered file container
|
|
/// </summary>
|
|
public class ClusteredFile
|
|
{
|
|
public Boolean IsSelected { get; set; }
|
|
public Int32 FileId { get; set; }
|
|
public String FileName { get; set; }
|
|
public Boolean FileIsLatest { get; set; }
|
|
public DateTime FileDate { get; set; }
|
|
public Boolean FileIsForDeveloperOnly { get; set; }
|
|
public Int32 FileCategoryID { get; set; }
|
|
public Boolean FileIsDeleted { get; set; }
|
|
// ReSharper disable once InconsistentNaming
|
|
public Int32? CordonelFwFile_id { get; set; }
|
|
// ReSharper disable once InconsistentNaming
|
|
public Int32? CordonelFwFile_FileClusterStoreId { get; set; }
|
|
// ReSharper disable once InconsistentNaming
|
|
public Int32? CordonelFwFile_Dn { get; set; }
|
|
// ReSharper disable once InconsistentNaming
|
|
public Int32? CordonelFwFile_Type { get; set; }
|
|
|
|
}
|
|
}
|