ffmpeg essentials fix Project reorganized git lfs ffmpeg removed ffmpeg added
16 lines
331 B
C#
16 lines
331 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VDownload.Services.Data.Authentication.Models
|
|
{
|
|
public class TokenAuthenticationData
|
|
{
|
|
[JsonProperty("token")]
|
|
public byte[]? Token { get; set; }
|
|
}
|
|
}
|