crm.core/code/Crm.Core.Entity/MsgTool/OssAccessModel.cs

18 lines
434 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Entity.MsgTool
{
public class OssAccessModel
{
public string region { get; set; }
public string accessKeyId { get; set; }
public string accessKeySecret { get; set; }
public string stsToken { get; set; }
public string bucket { get; set; }
}
}