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