More Types
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Core.Models.Eft.Dialog;
|
||||
|
||||
public class CreateGroupMailRequest
|
||||
{
|
||||
[JsonPropertyName("Name")]
|
||||
public string Name { get; set; }
|
||||
|
||||
[JsonPropertyName("Users")]
|
||||
public List<string> Users { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user