presence/domain/Request/AddSubjectsToGroupRequest.cs

10 lines
186 B
C#
Raw Permalink Normal View History

2024-12-05 07:31:49 +00:00
using System.Collections.Generic;
namespace domain.Request
{
public class AddSubjectsToGroupRequest
{
public List<int> Subjects { get; set; } = new List<int>();
}
}