16 lines
374 B
C#
16 lines
374 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace LightlessSyncShared.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; }
|
|
[Timestamp]
|
|
public byte[] Timestamp { get; set; }
|
|
}
|