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

12 lines
237 B
C#

namespace LaaProduction.Services.Models.Software
{
using System.Collections.Generic;
public class FunctionUsers
{
public int FunctionId { get; set; }
public IEnumerable<short> Users { get; set; }
}
}