16 lines
382 B
C#
16 lines
382 B
C#
using MessagePack;
|
|
|
|
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
|
|
|
|
[MessagePackObject]
|
|
public class TransitionAccountData
|
|
{
|
|
[Key("social_account_id")]
|
|
public string SocialAccountId { get; set; }
|
|
|
|
[Key("social_account_type")]
|
|
public string SocialAccountType { get; set; }
|
|
|
|
[Key("connected_viewer_id")]
|
|
public string ConnectedViewerId { get; set; }
|
|
} |