laatzen/LaaProductionWeb/LaaProduction.Personalization/Models/SoftwareDetails.cs
Stoyan Zlatev e32e553bfc clr types
2024-12-18 15:25:14 +01:00

25 lines
578 B
C#

namespace LaaProduction.Personalization.Models
{
using System;
using System.Collections.Generic;
public 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; }
}
}