// Copyright (c) Microsoft. All rights reserved. namespace Step02.Models; /// /// Represents the data structure for a form capturing details of a new customer, including personal information, contact details, account id and account type.
/// Class used in , samples ///
public class AccountDetails : NewCustomerForm { public Guid AccountId { get; set; } public AccountType AccountType { get; set; } } public enum AccountType { PrimeABC, Other, }