14 lines
272 B
C#
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; }
|
|
}
|
|
}
|