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

20 lines
402 B
C#

namespace LaaProduction.Personalization.Models
{
using System;
public class SoftwareVersion
{
public int VersionId { get; set; }
public string VersionNr { get; set; }
public string Description { get; set; }
public string ValidUntil { get; set; }
public short SoftwareId { get; set; }
public string AssemblyName { get; set; }
}
}