31 lines
600 B
C#
31 lines
600 B
C#
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; }
|
|
}
|
|
} |