laatzen/LaaProductionWeb/LaaProduction.Services/Models/Software/SoftwareOverview.cs
2023-06-19 15:43:55 +02:00

14 lines
272 B
C#

namespace LaaProduction.Services.Models.Software
{
public class SoftwareOverview
{
public short AppId { get; set; }
public string Name { get; set; }
public int Versions { get; set; }
public int Functions { get; set; }
}
}