laatzen/LaaProductionWeb/LaaProduction.Services/Models/Software/UserFunctions.cs
2023-06-19 15:43:55 +02:00

13 lines
255 B
C#

namespace LaaProduction.Services.Models.Software
{
using System;
using System.Collections.Generic;
public class UserFunctions
{
public short UserId { get; set; }
public IEnumerable<int> Functions { get; set; }
}
}