Skip to content

Instantly share code, notes, and snippets.

@killnine
killnine / Customer.cs
Created November 20, 2023 14:48 — forked from SteveSandersonMS/Customer.cs
Blazor + FluentValidation example
public class Customer
{
public string FirstName { get; set; }
public string LastName { get; set; }
public Address Address { get; } = new Address();
public List<PaymentMethod> PaymentMethods { get; } = new List<PaymentMethod>();
}
public class Address
{