Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion shared/models/other.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
export type SelectValue = { label: string; value: string };

export interface TenantSettings {
export class TenantSettings {
siteName: string;
siteUrl: string;
messageSignOff: string;
emailFrom: string;
siteImage: string;

constructor(obj: Partial<TenantSettings>) {
Object.assign(this, obj);
}
}

export type UserEmailData = {
Expand Down
Loading