diff --git a/.vs/DeskHubSharp/v15/.suo b/.vs/DeskHubSharp/v15/.suo index 6c1210b..9ddf93f 100644 Binary files a/.vs/DeskHubSharp/v15/.suo and b/.vs/DeskHubSharp/v15/.suo differ diff --git a/DeskHubSharp.Models/DeskHubSharp.Models.fsproj b/DeskHubSharp.Models/DeskHubSharp.Models.fsproj new file mode 100644 index 0000000..df45432 --- /dev/null +++ b/DeskHubSharp.Models/DeskHubSharp.Models.fsproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/DeskHubSharp.Models/Email.fs b/DeskHubSharp.Models/Email.fs new file mode 100644 index 0000000..e449798 --- /dev/null +++ b/DeskHubSharp.Models/Email.fs @@ -0,0 +1,6 @@ +module Email + + type EmailModel (fromEmail: string, toEmail: string, password: string) = + member x.fromEmail = fromEmail + member x.toEmail = toEmail + member x.password = "password" \ No newline at end of file diff --git a/DeskHubSharp.Models/Library.fs b/DeskHubSharp.Models/Library.fs new file mode 100644 index 0000000..ae75e1d --- /dev/null +++ b/DeskHubSharp.Models/Library.fs @@ -0,0 +1,5 @@ +namespace DeskHubSharp.Models + +module Say = + let hello name = + printfn "Hello %s" name diff --git a/DeskHubSharp.sln b/DeskHubSharp.sln index 71aee3c..1aeb579 100644 --- a/DeskHubSharp.sln +++ b/DeskHubSharp.sln @@ -5,6 +5,8 @@ VisualStudioVersion = 15.0.28010.2046 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DeskHubSharp", "DeskHubSharp\DeskHubSharp.csproj", "{BB23F915-21F5-4201-9021-0BE824660DBC}" EndProject +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "DeskHubSharp.Models", "DeskHubSharp.Models\DeskHubSharp.Models.fsproj", "{AC090BDC-3D12-4F61-B4EE-145BADEB3AC6}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -15,6 +17,10 @@ Global {BB23F915-21F5-4201-9021-0BE824660DBC}.Debug|Any CPU.Build.0 = Debug|Any CPU {BB23F915-21F5-4201-9021-0BE824660DBC}.Release|Any CPU.ActiveCfg = Release|Any CPU {BB23F915-21F5-4201-9021-0BE824660DBC}.Release|Any CPU.Build.0 = Release|Any CPU + {AC090BDC-3D12-4F61-B4EE-145BADEB3AC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AC090BDC-3D12-4F61-B4EE-145BADEB3AC6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AC090BDC-3D12-4F61-B4EE-145BADEB3AC6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AC090BDC-3D12-4F61-B4EE-145BADEB3AC6}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE