-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from Hampo/dev
Create ChannelVIP.cs
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
TwitchLib.EventSub.Core/SubscriptionTypes/Channel/ChannelVip.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
namespace TwitchLib.EventSub.Core.SubscriptionTypes.Channel; | ||
|
||
/// <summary> | ||
/// Channel VIP subscription type model (for VIP Add and Remove) | ||
/// <para>Description:</para> | ||
/// <para>VIP was added to/removed from a user on a specified channel.</para> | ||
/// </summary> | ||
public sealed class ChannelVip | ||
{ | ||
/// <summary> | ||
/// The user ID of the new/removed moderator. | ||
/// </summary> | ||
public string UserId { get; set; } = string.Empty; | ||
/// <summary> | ||
/// The display name of the new/removed moderator. | ||
/// </summary> | ||
public string UserName { get; set; } = string.Empty; | ||
/// <summary> | ||
/// The user login of the new/removed moderator. | ||
/// </summary> | ||
public string UserLogin { get; set; } = string.Empty; | ||
/// <summary> | ||
/// The requested broadcaster ID. | ||
/// </summary> | ||
public string BroadcasterUserId { get; set; } = string.Empty; | ||
/// <summary> | ||
/// The requested broadcaster display name. | ||
/// </summary> | ||
public string BroadcasterUserName { get; set; } = string.Empty; | ||
/// <summary> | ||
/// The requested broadcaster login. | ||
/// </summary> | ||
public string BroadcasterUserLogin { get; set; } = string.Empty; | ||
} |