Files
microsoft--semantic-kernel/dotnet/samples/GettingStartedWithProcesses/Step02/Models/AccountDetails.cs
T
wehub-resource-sync b957a53def
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:21:23 +08:00

20 lines
567 B
C#

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