using System;
namespace Xylem.Common.Logic.ProductionOrderCore.File
{
///
/// File base class
///
public class BaseFile
{
///
/// Optional file identifier
///
public Int32? FileId { get; set; }
///
/// File name
///
public String FileName { get; set; }
///
/// File content as string
///
public String FileContent { get; set; }
///
/// Optional file creation date
///
public DateTimeOffset? UploadDate { get; set; }
///
/// Marker for latest file, is important if several files have an identical name
/// and different versions.
///
public Boolean? IsLatest { get; set; }
///
/// Special file for development which will not be used for production.
///
public Boolean? ForDeveloper { get; set; }
}
}