16 lines
295 B
C#
16 lines
295 B
C#
namespace LaaProduction.Services.Models.Software
|
|
{
|
|
using System;
|
|
|
|
public class SoftwareOverview
|
|
{
|
|
public Int16 AppId { get; set; }
|
|
|
|
public String Name { get; set; }
|
|
|
|
public Int32 Versions { get; set; }
|
|
|
|
public Int32 Functions { get; set; }
|
|
}
|
|
}
|