(* Options:
Date: 2024-12-22 21:18:43
Version: 8.51
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://blazor-gallery.servicestack.net
//GlobalNamespace:
//MakeDataContractsExtensible: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//ExportValueTypes: False
IncludeTypes: CreateCoupon.*
//ExcludeTypes:
//InitializeCollections: False
//AddNamespaces:
*)
namespace MyApp.ServiceModel
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
///
///Discount Coupons
///
[]
type Coupon() =
member val Id:String = null with get,set
member val Description:String = null with get,set
member val Discount:Int32 = new Int32() with get,set
member val ExpiryDate:DateTime = new DateTime() with get,set
[]
[]
[]
type CreateCoupon() =
interface IReturn
[]
member val Description:String = null with get,set
[]
member val Discount:Int32 = new Int32() with get,set
[]
member val ExpiryDate:DateTime = new DateTime() with get,set