using System;
namespace Xylem.ServiceFwUpdate.Common.FwUpdateSafe
{
///
/// Software license container
///
[Serializable]
public class SoftwareLicense
{
///
/// Software name
///
public String Program;
///
/// Software version major
///
public Int32 Major;
///
/// Software version minor
///
public Int32 Minor;
///
/// Software version build
///
public Int32 Build;
///
/// Duty date
///
public DateTime ValidTo;
///
/// Free description (e.g validated by "name")
///
public String Description;
///
/// Unique program validation (SW can only exists once)
///
public Boolean ProgramNameIsUnique;
}
}