mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
9 lines
210 B
C#
9 lines
210 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 bool IsBanned { get; set; }
|
|
} |