* get rid of file handling through grpc and signalr * fix upload on controller * adapt usersetpairpermissions * send user perms * server-side fixes * rework file upload * adjust log level to debug in docker standalone json * update dependencies --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
20 lines
586 B
C#
20 lines
586 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MareSynchronosShared.Models;
|
|
|
|
public class ClientPair
|
|
{
|
|
[MaxLength(10)]
|
|
public string UserUID { get; set; }
|
|
public User User { get; set; }
|
|
[MaxLength(10)]
|
|
public string OtherUserUID { get; set; }
|
|
public User OtherUser { get; set; }
|
|
public bool IsPaused { get; set; }
|
|
public bool AllowReceivingMessages { get; set; } = false;
|
|
[Timestamp]
|
|
public byte[] Timestamp { get; set; }
|
|
public bool DisableSounds { get; set; } = false;
|
|
public bool DisableAnimations { get; set; } = false;
|
|
}
|