13 lines
258 B
C#
13 lines
258 B
C#
namespace LaaProductionWeb.Services.Models.Software
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public class UserFunctions
|
|
{
|
|
public short UserId { get; set; }
|
|
|
|
public IEnumerable<int> Functions { get; set; }
|
|
}
|
|
}
|