presence_new/domain/Requests/AddGroupRequest.cs

12 lines
214 B
C#
Raw Permalink Normal View History

2024-12-13 07:21:14 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace domain.Requests
{
public class AddGroupRequest
{
public string Name { get; set; }
}
}