diff --git a/ModelsLib/Email.fs b/ModelsLib/Email.fs new file mode 100644 index 0000000..cb50bfa --- /dev/null +++ b/ModelsLib/Email.fs @@ -0,0 +1,16 @@ +namespace DeskHubSharpRevised.Models + +type Email() = + let mutable _toEmail: string = "wjmiller2016@gmail.com" + let mutable _fromEmail: string = "wjmiller2016@gmail.com" + let mutable _password: string = "password" + + member this.ToEmail + with get() = _toEmail + and set(value: string) = _toEmail <- value + member this.FromEmail + with get() = _fromEmail + and set(value: string) = _fromEmail <- value + member this.Password + with get() = _password + and set(value: string) = _password <- value \ No newline at end of file diff --git a/ModelsLib/ModelsLib.fsproj b/ModelsLib/ModelsLib.fsproj new file mode 100644 index 0000000..bdfff38 --- /dev/null +++ b/ModelsLib/ModelsLib.fsproj @@ -0,0 +1,26 @@ + + + + net6.0 + true + DeskHubSharpRevised.Models + + + + + + + + + + + + + + + + + +