Notes
This commit is contained in:
parent
4c2b5cca93
commit
43b4d50e43
28 changed files with 674 additions and 249 deletions
21
InkForge.Api.Data/Workspaces.cs
Normal file
21
InkForge.Api.Data/Workspaces.cs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
using InkForge.Data;
|
||||
|
||||
using Microsoft.AspNetCore.Identity;
|
||||
|
||||
namespace InkForge.Api.Data
|
||||
{
|
||||
public class Workspace
|
||||
{
|
||||
public DateTimeOffset Created { get; set; }
|
||||
|
||||
public DateTimeOffset? Deleted { get; set; }
|
||||
|
||||
public string Name { get; set; } = default!;
|
||||
|
||||
public IdentityUser Owner { get; set; } = default!;
|
||||
|
||||
public DateTimeOffset Updated { get; set; }
|
||||
}
|
||||
|
||||
public class WorkspaceEntity : Entity<Workspace, int>;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue