24 lines
562 B
C#
24 lines
562 B
C#
namespace LaaProduction.Personalization.Models
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
internal class SoftwareDetails
|
|
{
|
|
public short SoftwareId { get; set; }
|
|
|
|
public int VersionId { get; set; }
|
|
|
|
public string VersionNr { get; set; }
|
|
|
|
public string ValidUntil { get; set; }
|
|
|
|
public string AssemblyName { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public IEnumerable<SoftwareVersion> Versions { get; set; }
|
|
|
|
public IEnumerable<SoftwareFunction> Functions { get; set; }
|
|
}
|
|
}
|