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

12 lines
240 B
C#

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