12 lines
226 B
C#
12 lines
226 B
C#
namespace LaaProduction.Services.Models.Software
|
|
{
|
|
public class SoftwareFunction
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public short AppId { get; set; }
|
|
|
|
public string Function { get; set; }
|
|
}
|
|
}
|