25 lines
580 B
C#
25 lines
580 B
C#
namespace LaaProduction.Personalization.Models
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public class SoftwareDetails
|
|
{
|
|
public Int16 SoftwareId { get; set; }
|
|
|
|
public Int32 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; }
|
|
}
|
|
}
|