mirror of
https://github.com/yawaflua/Discord.Net.git
synced 2025-12-11 15:56:21 +02:00
Refactor and rename project to yawaflua.Discord.Net; add core entities and interfaces for Discord OAuth2 integration
This commit is contained in:
17
Interfaces/Models/IConnection.cs
Normal file
17
Interfaces/Models/IConnection.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using yawaflua.Discord.Net.Entities.Enums;
|
||||
|
||||
namespace yawaflua.Discord.Net.Interfaces.Models;
|
||||
|
||||
public interface IConnection
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public ConnectionType Type { get; set; }
|
||||
public bool? Revoked { get; set; }
|
||||
public object[] Integrations { get; set; }
|
||||
public bool? Verified { get; set; }
|
||||
public bool? FriendSync { get; set; }
|
||||
public bool? ShowActivity { get; set; }
|
||||
public bool? TwoWayLink { get; set; }
|
||||
public ConnectionVisibility? Visibility { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user