diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000..532c33c
Binary files /dev/null and b/.DS_Store differ
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..723ef36
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.idea
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Employee/Employee.iml b/Employee/Employee.iml
new file mode 100644
index 0000000..4a4ce55
--- /dev/null
+++ b/Employee/Employee.iml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Employee/src/main/resources/Employee.proto b/Employee/src/main/resources/Employee.proto
index 740b05b..6e68d51 100644
--- a/Employee/src/main/resources/Employee.proto
+++ b/Employee/src/main/resources/Employee.proto
@@ -3,7 +3,8 @@ syntax = "proto3";
message Employee {
int32 id = 1;
string name = 2;
- int32 salary = 3;
+ float salary = 3;
+ string dept = 4;
}
message Employees {
diff --git a/README.md b/README.md
index 023156d..228a47e 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,2 @@
-to test sync changes
+
+to test sync
\ No newline at end of file
diff --git a/Student/src/main/resources/Student.proto b/Student/src/main/resources/Student.proto
index bb0443a..92e98c5 100644
--- a/Student/src/main/resources/Student.proto
+++ b/Student/src/main/resources/Student.proto
@@ -3,7 +3,7 @@ syntax = "proto3";
message Student {
int32 id = 1;
string name = 2;
- int32 rollno = 3;
+ float rollno = 3;
}
message Class {