13 lines
257 B
C#
13 lines
257 B
C#
namespace LaaProduction.Services.Models.Software
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public class FunctionUsers
|
|
{
|
|
public Int32 FunctionId { get; set; }
|
|
|
|
public IEnumerable<Int16> Users { get; set; }
|
|
}
|
|
}
|