12 lines
237 B
C#
12 lines
237 B
C#
namespace LaaProduction.Services.Models.Software
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
public class FunctionUsers
|
|
{
|
|
public int FunctionId { get; set; }
|
|
|
|
public IEnumerable<short> Users { get; set; }
|
|
}
|
|
}
|