laatzen/LaaProductionWeb/LaaProduction.Services/Models/Software/FunctionUsers.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 FunctionUsers
{
public Int32 FunctionId { get; set; }
public IEnumerable<Int16> Users { get; set; }
}
}