- Project does not work still in this version as communication is still not happening between Client/Server/Core. Fake UI is still somewhat needed to progress
12 lines
350 B
C#
12 lines
350 B
C#
using SurrealDb.Net.Models;
|
|
|
|
namespace RelayServer.Models;
|
|
|
|
public class Conversations : Record
|
|
{
|
|
public required string CreatedByUserId { get; set; }
|
|
public required DateTime CreatedAt { get; set; }
|
|
public required DateTime UpdatedAt { get; set; }
|
|
public string? Title { get; set; }
|
|
public bool IsDirectMessage { get; set; }
|
|
} |