16 lines
382 B
C#
16 lines
382 B
C#
using MongoDB.Bson.Serialization.Attributes;
|
|
using MongoDB.Bson;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace ChatApi.Controllers
|
|
{
|
|
public class UserRequest
|
|
{
|
|
public string Name { get; set; }
|
|
public string CompanyTenant { get; set; }
|
|
public string LocalId { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public string? Secret { get; set; }
|
|
}
|
|
} |