OF-DL/OF DL/Models/Auth.cs

14 lines
373 B
C#

using Newtonsoft.Json;
namespace OF_DL.Models;
public class Auth
{
public string? USER_ID { get; set; } = string.Empty;
public string? USER_AGENT { get; set; } = string.Empty;
public string? X_BC { get; set; } = string.Empty;
public string? COOKIE { get; set; } = string.Empty;
[JsonIgnore] public string? FFMPEG_PATH { get; set; } = string.Empty;
}