mirror of
https://github.com/Crunchy-DL/Crunchy-Downloader.git
synced 2026-04-27 19:52:56 +00:00
Add - Added Artist/Concerts/Music video support https://github.com/Crunchy-DL/Crunchy-Downloader/issues/67 https://github.com/Crunchy-DL/Crunchy-Downloader/issues/46 Add - Added CC support https://github.com/Crunchy-DL/Crunchy-Downloader/issues/65 Fix - "No active subscrition" text shown with funimation sub https://github.com/Crunchy-DL/Crunchy-Downloader/issues/56
15 lines
No EOL
472 B
C#
15 lines
No EOL
472 B
C#
using System;
|
|
|
|
namespace CRD.Utils.Structs.Crunchyroll;
|
|
|
|
public class CrToken{
|
|
public string? access_token { get; set; }
|
|
public string? refresh_token { get; set; }
|
|
public int? expires_in { get; set; }
|
|
public string? token_type { get; set; }
|
|
public string? scope { get; set; }
|
|
public string? country { get; set; }
|
|
public string? account_id { get; set; }
|
|
public string? profile_id { get; set; }
|
|
public DateTime? expires { get; set; }
|
|
} |