20 lines
404 B
C#
20 lines
404 B
C#
namespace LaaProduction.Personalization.Models
|
|
{
|
|
using System;
|
|
|
|
public 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; }
|
|
}
|
|
}
|