mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
5 lines
80 B
TypeScript
5 lines
80 B
TypeScript
|
|
export type User = {
|
||
|
|
userName: string;
|
||
|
|
firstName: string;
|
||
|
|
lastName: string;
|
||
|
|
}
|