Got the new ui flow working and the models updated. Need to get changes written to the database.
This commit is contained in:
11
OpenArchival.DataAccess/Models/ArtifactStorageLocation.cs
Normal file
11
OpenArchival.DataAccess/Models/ArtifactStorageLocation.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace OpenArchival.DataAccess;
|
||||
|
||||
public class ArtifactStorageLocation
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
|
||||
public required string Location { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user