mirror of
https://github.com/yawaflua/Discord.Net.git
synced 2025-12-09 03:49:36 +02:00
19 lines
629 B
C#
19 lines
629 B
C#
using yawaflua.Discord.Net.Entities.Enums;
|
|
|
|
namespace yawaflua.Discord.Net.Interfaces.Models;
|
|
|
|
public interface IGuild
|
|
{
|
|
public ulong Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string? IconHash { get; set; }
|
|
public string? BannerHash { get; set; }
|
|
public bool IsOwner { get; set; }
|
|
public string Permissions { get; set; }
|
|
public IEnumerable<GuildFeature> Features { get; set; }
|
|
public int ApproximateMemberCount { get; set; }
|
|
public int ApproximatePresenceCount { get; set; }
|
|
|
|
public string GetIconUrl(int size = 128);
|
|
public string GetBannerUrl(int size = 128);
|
|
} |