标签: c# asp.net-core .net-core asp.net-core-webapi
我正在用.NET Core做一个Web API。注册时,用户将提供图像URL。我想将给定URL中的图像下载到任何文件夹。
这是我的用户模型
public class UserDTO { public string username { get; set; } public string password { get; set; } public string imgUrl { get; set; } }