forked from OpenWF/SpaceNinjaServer
11 lines
194 B
TypeScript
11 lines
194 B
TypeScript
|
import { Types } from "mongoose";
|
||
|
import { IOid } from "@/src/types/commonTypes";
|
||
|
|
||
|
export interface IGuild {
|
||
|
Name: string;
|
||
|
}
|
||
|
|
||
|
export interface ICreateGuildRequest {
|
||
|
guildName: string;
|
||
|
}
|