CaffGeek/MBACNationals

View on GitHub
Website/src/app/services/models/location.ts

Summary

Maintainability
A
0 mins
Test Coverage

export class Location {
    Id: string;
    TournamentId: string;
    Name: string;
    Website: string;
    PhoneNumber: string;
    DefaultCheckin: string;
    DefaultCheckout: string;
    RoomTypes: string[];
    LogoUrl?: string;
    ImageUrl?: string;
}