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"; } } }