Getting to making it work with modals

This commit is contained in:
2020-05-03 02:10:32 +02:00
parent 29cde263d3
commit 665357421a
9 changed files with 191 additions and 40 deletions

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Seenginx.Models
{
public class NewFileForm
{
public string Name { get; set; }
}
}