Files
social-media/backend/src/Socialize.Api/Modules/Workspaces/Data/Workspace.cs
Jonathan Bourdon b7379cf823
Some checks failed
Backend CI/CD / build_and_deploy (push) Has been cancelled
Frontend CI/CD / build_and_deploy (push) Has been cancelled
feat: just getting better and better
2026-05-04 21:34:38 -04:00

17 lines
628 B
C#

namespace Socialize.Api.Modules.Workspaces.Data;
public class Workspace
{
public Guid Id { get; init; }
public required string Name { get; set; }
public string? LogoUrl { get; set; }
public Guid OrganizationId { get; set; }
public Guid OwnerUserId { get; set; }
public required string TimeZone { get; set; }
public string ApprovalMode { get; set; } = "Required";
public bool SchedulePostsAutomaticallyOnApproval { get; set; }
public bool LockContentAfterApproval { get; set; }
public bool SendAutomaticApprovalReminders { get; set; }
public DateTimeOffset CreatedAt { get; init; }
}