import { Optional } from 'sequelize';
import { TDBAttributes, TDBCreationAttributes } from "../../../../../db/rls/types"

export type T{{shortName}}Attributes = TDBAttributes & {
    // INSERT YOUR ATTRIBUTES TYPES HERE
};

export type T{{shortName}}CreationAttributes = TDBCreationAttributes
    & Optional<T{{shortName}}Attributes, /** INSERT YOUR OPTIONAL ATTRIBUTES HERE */>;