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