11 lines
203 B
C#
11 lines
203 B
C#
using IM_API.Models;
|
|
|
|
namespace IM_API.Dtos.Group
|
|
{
|
|
public class HandleGroupInviteDto
|
|
{
|
|
public int InviteId { get; set; }
|
|
public GroupRequestState Action { get; set; }
|
|
}
|
|
}
|