✨ Chat realtime calls
This commit is contained in:
15
DysonNetwork.Sphere/Chat/RealtimeCall.cs
Normal file
15
DysonNetwork.Sphere/Chat/RealtimeCall.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using NodaTime;
|
||||
|
||||
namespace DysonNetwork.Sphere.Chat;
|
||||
|
||||
public class RealtimeCall : ModelBase
|
||||
{
|
||||
public Guid Id { get; set; } = Guid.NewGuid();
|
||||
public string? Title { get; set; }
|
||||
public Instant? EndedAt { get; set; }
|
||||
|
||||
public Guid SenderId { get; set; }
|
||||
public ChatMember Sender { get; set; } = null!;
|
||||
public long RoomId { get; set; }
|
||||
public ChatRoom Room { get; set; } = null!;
|
||||
}
|
Reference in New Issue
Block a user