mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
11 lines
300 B
C#
11 lines
300 B
C#
namespace Govor.Core.Models;
|
|
|
|
public class GroupMembership
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid GroupId { get; set; }
|
|
public Guid UserId { get; set; }
|
|
public Guid? InvitationId { get; set; }
|
|
public bool IsBanned { get; set; }
|
|
public DateTime MemberSince { get; set; }
|
|
} |