InkForge/InkForge.Api.Data/Domain/Workspace.cs
2024-02-07 22:16:59 +01:00

16 lines
341 B
C#

using Microsoft.AspNetCore.Identity;
namespace InkForge.Api.Data.Domain;
public class Workspace
{
public string Name { get; set; } = default!;
public DateTimeOffset Created { get; set; }
public IdentityUser Owner { get; set; } = default!;
public DateTimeOffset Updated { get; set; }
public DateTimeOffset? Deleted { get; set; }
}