Commit 8331bc14 authored by Diego Iván's avatar Diego Iván
Browse files

agregando createTownDTO

parent c11aa48b
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
export class CreateTownDto {}
export class CreateTownDto {
  name: string;
  description: string;
  imageName: string = 'default.jpg';
  state: number;
}