pictureServer/PictureFilesApi/Models/RequestModel/AddOrUpdateUploadReq.cs

18 lines
370 B
C#
Raw Normal View History

2026-03-10 09:04:34 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace PictureFilesApi.Models.RequestModel
{
public class AddOrUpdateUploadReq
{
public string project { get; set; }
public void init()
{
if (string.IsNullOrEmpty(project)) project = "DroneEnforcement";
}
}
}