18 lines
387 B
C#
18 lines
387 B
C#
namespace LaaProduction.Personalization.Models
|
|
{
|
|
internal class SoftwareItem
|
|
{
|
|
public short SoftwareId { get; set; }
|
|
|
|
public int VersionId { get; set; }
|
|
|
|
public string AssemblyName { get; set; }
|
|
|
|
public string CurrentVersion { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public string ValidUntil { get; set; }
|
|
}
|
|
}
|