Skip to content
Snippets Groups Projects
Select Git revision
  • 774ee05b7a0aea40a23a8f88c01e9f7ad9d741f9
  • master default protected
  • 4
  • 4.2
  • 4.2.2
  • 4.2.1
  • 4.2.0
  • 4.1
  • 4.1.1
  • 4.1.0
  • 4.0.3
  • 4.0.2
  • 4.0
  • 4.0.1
  • 4.0.0
15 results

CHANGELOG.md

Blame
  • To find the state of this project's repository at the time of any of these versions, check out the tags.
    target-available.model.ts 647 B
    import { TargetType } from "./enumeration/target-type.model";
    
    export interface ITargetAvailable {
      id?: number;
      type?: TargetType;
      code?: string;
      value?: string;
      //createdDate?: dayjs.Dayjs | null;
      createdBy?: string | null;
    }
    
    export class TargetAvailable implements ITargetAvailable {
      constructor(
        public id?: number,
        public type?: TargetType,
        public code?: string,
        public value?: string,
        //public createdDate?: dayjs.Dayjs | null,
        public createdBy?: string | null
      ) {}
    }
    
    export function getTargetAvailableIdentifier(targetAvailable: ITargetAvailable): number | undefined {
      return targetAvailable.id;
    }