#nullable enable
using System.Collections.Generic;
namespace PluralKit.Core
{
///
/// Model for the `proxy_members` PL/pgSQL function in `functions.sql`
///
public class ProxyMember
{
public int Id { get; set; }
public IReadOnlyCollection ProxyTags { get; set; } = new ProxyTag[0];
public bool KeepProxy { get; set; }
public string ProxyName { get; set; } = "";
public string? ProxyAvatar { get; set; }
}
}