(* Options:
Date: 2024-12-22 21:08:20
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: DeleteBooking.*
//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
///
///Booking Details
///
[]
type Booking() =
inherit AuditBase()
member val Id:Int32 = new Int32() with get,set
member val Name:String = null with get,set
member val RoomType:RoomType = new RoomType() with get,set
member val RoomNumber:Int32 = new Int32() with get,set
member val BookingStartDate:DateTime = new DateTime() with get,set
member val BookingEndDate:Nullable = new Nullable() with get,set
member val Cost:Decimal = new Decimal() with get,set
[)>]
member val CouponId:String = null with get,set
member val Discount:Coupon = null with get,set
member val Notes:String = null with get,set
member val Cancelled:Nullable = new Nullable() with get,set
///
///Delete a Booking
///
[]
[]
[]
type DeleteBooking() =
interface IReturnVoid
member val Id:Int32 = new Int32() with get,set