using MediatR;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 文字识别营业执照
///
[Resource([EnumResourceController.OcrUtils])]
public class GetLicenseOcrCommand : IRequest
{
///
/// 通道
///
public EnumOcrAccess Access { get; set; }
///
/// 场景
///
public string Scene { get; set; }
///
/// 链接地址
///
public string Url { get; set; }
///
/// 是否为云存储相对地址
///
public bool IsOssUrl { get; set; }
}
///
/// 文字识别营业执照
///
public class GetLicenseOcrCommandResult
{
///
/// 地址
///
public string Url { get; set; }
///
/// 模型
///
public BaiduOcrBusinessLicenseResultModel Model { get; set; }
}
}