14 lines
318 B
C#
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>();
|
|
}
|
|
} |