13 lines
184 B
C#
13 lines
184 B
C#
using System;
|
|
|
|
namespace Host.Models;
|
|
|
|
public record UserDto(
|
|
Guid Id,
|
|
string Username,
|
|
string DisplayName,
|
|
string? Avatar,
|
|
bool IsOnline,
|
|
DateTime LastSeen
|
|
);
|