practicekea_backend/microservices/S3Bucket/Models/EnumModel.cs

31 lines
600 B
C#
Raw Permalink Normal View History

2024-12-02 13:24:34 +00:00
using Amazon.S3.Model;
using System.Collections.Generic;
namespace OnlineAssessment.Models
{
public enum UploadFileName
{
First = 1,
Second = 2,
Third = 3,
Fourth = 4,
Fifth = 5,
}
public class UploadFilePath
{
public string file_path { get; set; }
}
public class KeyValue
{
public string key { get; set; }
public string value { get; set; }
}
public class FilePathWithMeta
{
public string file_path { get; set; }
public List<KeyValue> listmetadata { get; set; }
}
}