14 lines
247 B
C#
14 lines
247 B
C#
namespace LaaProduction.Services.Models.Software
|
|
{
|
|
using System;
|
|
|
|
public class SoftwareFunction
|
|
{
|
|
public Int32 Id { get; set; }
|
|
|
|
public Int16 AppId { get; set; }
|
|
|
|
public String Function { get; set; }
|
|
}
|
|
}
|