InkForge/InkForge.Api.Data/Domain/Workspace.cs

17 lines
341 B
C#
Raw Normal View History

2024-02-07 22:16:59 +01:00
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; }
}