laatzen/LaaProductionWeb/LaaProductionWeb.Services/Models/Software/UserFunctions.cs
2023-05-30 16:18:36 +02:00

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; }
}
}