Files
Temp_MSSPLASHPage/src/SplashPage.Application/Splash/Dto/AssignNetworksToGroupDto.cs
Jose Andres b531f51672 feat: Added NetworkGroups
- Entity
- Dtos
- Manage Services
- SQL Table creation
- View & permissions
2025-09-06 08:06:58 -06:00

14 lines
318 B
C#

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace SplashPage.Splash.Dto
{
public class AssignNetworksToGroupDto
{
[Required]
public int GroupId { get; set; }
[Required]
public List<int> NetworkIds { get; set; } = new List<int>();
}
}