using TightWiki.Models.DataModels; namespace TightWiki.Models.ViewModels.File { public class FileAttachmentViewModel : ViewModelBase { public string PageNavigation { get; set; } = string.Empty; public int PageRevision { get; set; } = 0; public List Files { get; set; } = new(); } }