laatzen/LaaProductionWeb/LaaProduction.Services/Models/Software/UserFunctions.cs
2024-07-17 13:13:41 +02:00

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