Как присвоить значение списку & lt;string & gt; внутри модели
моя модель как есть
public class MovieListModel { public int Id { get; set; } public List<string> FilePathList { get; set; } public string FileName { get; set; } public string Extension { get; set; } public string Size { get; set; } public DateTime CreatedTime { get; set; } public DateTime ModifiedTime { get; set; } }
I Need to add assign value to the above model but the proble is adding the value to the list of string that is inside the model, List<string> FilePathList i need something like this,
var obj = new MovieListModel() { FileName = fi.Name, FilePathList = , // Need to add value here. Count = 1, Extension = fi.Extension, Size = Helper.FormatBytes(fi.Length), CreatedTime = fi.CreationTime, ModifiedTime = File.GetLastWriteTime(item) }; movieList.Add(obj);
Что я уже пробовал:
Я попытался добавить значение, создав obj модели, и попытался присвоить значение, но не смог добавить значение.