opf/openproject

View on GitHub
frontend/src/app/core/state/principals/group.model.ts

Summary

Maintainability
A
40 mins
Test Coverage
import { ID } from '@datorama/akita';
import { IHalResourceLinks } from 'core-app/core/state/hal-resource';

export interface IGroupHalResourceLinks extends IHalResourceLinks { }

export interface IGroup {
  id:ID;
  name:string;
  createdAt:string;
  updatedAt:string;

  _links:IGroupHalResourceLinks;
}