using System;
namespace Logic.ProductionToProductMapper.Cordonel
{
///
/// Combination of information of installed applications.
///
///
/// - Initial
///
///
/// - Changed version from Uint32 to String
///
public class CordonelAppVersion
{
///
/// Identification number of application
///
public Int32 Id { get; set; }
///
/// Version of application
///
public String Version { get; set; }
///
/// Marker for update capability (e.g. Metrology (GENESISFLOW) could be locked, core revision is locked)
///
public Boolean IsUpdateable { get; set; }
///
/// Ctor
///
///
///
///
public CordonelAppVersion(Int32 id, String version, Boolean isUpdateable = true)
{
Id = id;
Version = version;
IsUpdateable = isUpdateable;
}
}
}