Add `DataEntryOrigin` enum: ```rust enum DataEntryOrigin { Import, Typist(UserId), } ``` - Update DataEntryStatus structs to refer to this new enum when talking about the first entry. - Deal with the fallout of this in the frontend and backend
Add
DataEntryOriginenum: