- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Newtonsoft.Json.Linq;
- namespace Common.Http
- {
- public class UserInviteReq
- {
- [Required]
- public string? receiver { get; set; }
- }
- }
|