From f16f3ab81df107bc7540cfa26b6ed9499d1cec3a Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Wed, 2 Apr 2025 14:47:57 -0700
Subject: [PATCH] create

---
 validation/src/create.rs | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 validation/src/create.rs

diff --git a/validation/src/create.rs b/validation/src/create.rs
new file mode 100644
index 0000000..5decf35
--- /dev/null
+++ b/validation/src/create.rs
@@ -0,0 +1,15 @@
+pub struct Create{
+	pub(crate) roblox_cookie:rbx_asset::cookie::CookieContext,
+	pub(crate) api:submissions_api::internal::Context,
+}
+impl Create{
+	pub const fn new(
+		roblox_cookie:rbx_asset::cookie::CookieContext,
+		api:submissions_api::internal::Context,
+	)->Self{
+		Self{
+			roblox_cookie,
+			api,
+		}
+	}
+}