18 lines
370 B
C#
18 lines
370 B
C#
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";
|
|
|
|
}
|
|
}
|
|
}
|