mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-04 00:26:07 +02:00
9 lines
218 B
C#
9 lines
218 B
C#
namespace EchoHub.Core.Models;
|
|
|
|
public class ChannelMembership
|
|
{
|
|
public Guid UserId { get; set; }
|
|
public Guid ChannelId { get; set; }
|
|
public DateTimeOffset JoinedAt { get; set; } = DateTimeOffset.UtcNow;
|
|
}
|