Files
ADMIN/WebServiceBrg/Contracts/CompositeType.fs
2019-08-08 12:44:50 +02:00

14 lines
396 B
Forth

namespace FSharpWcfServiceApplicationTemplate.Contracts
open System.Runtime.Serialization
open System.ServiceModel
// Note: When running serialization code in partial trust, you may need to convert
// this to a class with a default constructor.
[<DataContract>]
type CompositeType =
{ [<DataMember>] mutable BoolValue : bool
[<DataMember>] mutable StringValue : string }