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