laatzen/LaaProductionWeb/LaaProductionWeb.Services/Models/Software/SoftwareOverview.cs
2023-05-30 16:18:36 +02:00

14 lines
275 B
C#

namespace LaaProductionWeb.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; }
}
}